body {
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #02040a;
    transition: background-color 0.5s ease;
    padding: 80px 0 40px 0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(2, 4, 10, 0.8), transparent);
}

.navbar>* {
    pointer-events: all;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.logo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.9);
}

.theme-toggle-landing {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle-landing:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(15deg);
}

.sun-icon,
.moon-icon {
    position: absolute;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.moon-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.grid-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    animation: gridMove 20s linear infinite;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 50px;
    }
}

#compass-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, 1fr);
    pointer-events: none;
    opacity: 1;
}

.compass-needle {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.compass-needle::before {
    content: '';
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #ef4444 50%, #3b82f6 50%);
    border-radius: 2px;
    transition: transform 0.1s ease-out;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.landing-container {
    text-align: center;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    margin-top: 2rem;
}

.title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeDown 1s ease-out forwards;
}

.main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 40px rgba(99, 102, 241, 0.2);
    margin-bottom: 1rem;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    display: block;
}

.main-title:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 60px rgba(129, 140, 248, 0.8);
    letter-spacing: 2px;
}

.hero-description {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.2s forwards;
    font-weight: 300;
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    z-index: 1;
    filter: blur(40px);
    animation: pulseGlow 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 3rem;
    perspective: 1000px;
    padding-bottom: 2rem;
}

.card {
    position: relative;
    width: 350px;
    height: 450px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.4s forwards;
    cursor: pointer;
    transform-style: preserve-3d;
    margin-bottom: 10px;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.4),
            transparent 40%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 3;
}

.card:hover::before {
    opacity: 1;
}

.card:nth-child(2) {
    animation-delay: 0.6s;
}

.card-content {
    z-index: 2;
    padding: 2rem;
    text-align: center;
    transition: transform 0.5s ease;
    transform: translateZ(20px);
}

.icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
    transition: transform 0.5s ease;
}

.card h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(99, 102, 241, 0.3);
}

.card:hover .icon {
    transform: scale(1.2) rotate(10deg) translateZ(30px);
}

.card:hover h2 {
    color: var(--accent-primary);
}

.card-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0.8);
    transition: transform 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.card:hover .card-bg {
    transform: translate(-50%, -50%) scale(1.2);
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
}

.wire-card:hover {
    border-color: var(--accent-secondary);
}

.wire-card:hover .card-bg {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
}

.wire-card:hover h2 {
    color: var(--accent-secondary);
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 800px) {
    .cards-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .card {
        width: 100%;
        max-width: 350px;
        height: 300px;
    }
}


body.light-mode {
    background: linear-gradient(-45deg, #e0e7ff, #f3e8ff, #ffe4e6, #ecfeff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

body.light-mode .grid-bg {
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.15) 1px, transparent 1px);
    opacity: 0.6;
}

body.light-mode .main-title {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: none;
}

body.light-mode .hero-description {
    color: #475569;
}

body.light-mode .title-glow {
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    filter: blur(40px);
}

body.light-mode .card {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 10px 30px -5px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    backdrop-filter: blur(20px);
}

body.light-mode .card:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: #818cf8;
    box-shadow:
        0 20px 40px -10px rgba(99, 102, 241, 0.2),
        0 0 20px rgba(99, 102, 241, 0.1);
    transform: translateY(-15px) rotateX(5deg) scale(1.02);
}

body.light-mode .card h2 {
    color: #1e293b;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

body.light-mode .card p {
    color: #475569;
    font-weight: 500;
}

body.light-mode .icon {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

body.light-mode .logo {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(99, 102, 241, 0.2);
    color: #334155;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-mode .logo-text {
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

body.light-mode .logo-icon-wrapper {
    color: #f59e0b;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

body.light-mode .theme-toggle-landing {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(99, 102, 241, 0.2);
    color: #334155;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-mode .theme-toggle-landing:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #4f46e5;
    box-shadow: 0 4px 25px rgba(99, 102, 241, 0.2);
}

body.light-mode .sun-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
    color: #f59e0b;
}

body.light-mode .moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

body.light-mode #compass-grid {
    opacity: 1;
}

body.light-mode .compass-needle::before {
    background: linear-gradient(90deg, #ef4444 50%, #3b82f6 50%);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    height: 2px;
}

.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #02040a;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.transition-content {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.transition-overlay.mode-dipole .dipole-transition {
    display: block;
}

.magnetic-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: coreAppear 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pole {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    color: white;
    position: absolute;
    box-shadow: 0 0 20px currentColor;
}

.north {
    background: #ef4444;
    color: white;
    left: 0;
    animation: mergeNorth 2s ease-in-out forwards;
}

.south {
    background: #3b82f6;
    color: white;
    right: 0;
    animation: mergeSouth 2s ease-in-out forwards;
}

.field-lines span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 0;
    height: 0;
    animation: expandField 2s ease-out infinite;
}

.field-lines span:nth-child(2) {
    animation-delay: 0.3s;
}

.field-lines span:nth-child(3) {
    animation-delay: 0.6s;
}

.particles-swarm .p {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    opacity: 0;
}

.particles-swarm .p:nth-child(1) {
    animation: swarmIn 1.5s ease-in forwards;
    transform: translate(100px, 100px);
}

.particles-swarm .p:nth-child(2) {
    animation: swarmIn 1.5s ease-in 0.1s forwards;
    transform: translate(-120px, 50px);
}

.particles-swarm .p:nth-child(3) {
    animation: swarmIn 1.5s ease-in 0.2s forwards;
    transform: translate(80px, -90px);
}

.particles-swarm .p:nth-child(4) {
    animation: swarmIn 1.5s ease-in 0.15s forwards;
    transform: translate(-60px, -120px);
}

.particles-swarm .p:nth-child(5) {
    animation: swarmIn 1.5s ease-in 0.05s forwards;
    transform: translate(150px, 0);
}

.particles-swarm .p:nth-child(6) {
    animation: swarmIn 1.5s ease-in 0.25s forwards;
    transform: translate(-150px, 20px);
}

@keyframes coreAppear {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
    }

    100% {
        transform: translate(-50%, -50%) scale(1) rotate(360deg);
    }
}

@keyframes mergeNorth {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    50% {
        transform: translateX(-20px);
        opacity: 1;
    }

    100% {
        transform: translateX(-10px);
    }
}

@keyframes mergeSouth {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    50% {
        transform: translateX(20px);
        opacity: 1;
    }

    100% {
        transform: translateX(10px);
    }
}

@keyframes expandField {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
        border-width: 4px;
    }

    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
        border-width: 0;
    }
}

@keyframes swarmIn {
    0% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 0);
        opacity: 0;
    }
}

.transition-overlay.mode-wire .wire-transition {
    display: block;
}

.wire-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100px;
    transform: translateY(-50%);
}

.main-wire {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 2px;
    background: #10b981;
    box-shadow: 0 0 15px #10b981;
    animation: wireShoot 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.lightning-svg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 40px;
    transform: translateY(-50%);
    z-index: 2;
    overflow: visible;
}

.lightning-path {
    fill: none;
    stroke: #fbbf24;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    filter: drop-shadow(0 0 5px #fbbf24);
    animation: lightningStrike 1s ease-out 0.3s forwards;
}

.magnetic-rings .ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
    border: 2px solid rgba(16, 185, 129, 0.5);
    border-radius: 50%;
    width: 0;
    height: 0;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    animation: ringExpand 1.5s ease-out infinite;
}

.magnetic-rings .ring:nth-child(2) {
    animation-delay: 0.4s;
}

.magnetic-rings .ring:nth-child(3) {
    animation-delay: 0.8s;
}

.sparks-burst .s {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fbbf24;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
}

.sparks-burst .s:nth-child(1) {
    animation: sparkExplode 0.8s ease-out 0.5s forwards;
    transform: rotate(0deg) translateY(-50px);
}

.sparks-burst .s:nth-child(2) {
    animation: sparkExplode 0.8s ease-out 0.5s forwards;
    transform: rotate(45deg) translateY(-60px);
}

.sparks-burst .s:nth-child(3) {
    animation: sparkExplode 0.8s ease-out 0.5s forwards;
    transform: rotate(90deg) translateY(-40px);
}

@keyframes wireShoot {
    0% {
        width: 0;
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes lightningStrike {
    0% {
        stroke-dashoffset: 1000;
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

@keyframes ringExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
        border-width: 3px;
    }

    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
        border-width: 0;
    }
}

@keyframes sparkExplode {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty));
        opacity: 0;
    }
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.guide-btn {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.guide-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
}

.how-to-container {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.guide-header {
    text-align: center;
    margin-bottom: 4rem;
}

.guide-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.guide-desc {
    font-size: 1.2rem;
    opacity: 0.8;
}

.guide-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.guide-section {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.guide-section.full-width {
    grid-column: 1 / -1;
}

.guide-section:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.icon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.section-icon {
    font-size: 2rem;
}

.guide-section h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

.instruction-card h3 {
    font-size: 1.1rem;
    color: var(--accent-primary);
    margin-bottom: 0.8rem;
}

.guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-list li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-left: 1.2rem;
    position: relative;
}

.guide-list li::before {
    content: "�";
    color: var(--accent-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

body.light-mode .guide-section {
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-mode .guide-section:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: #818cf8;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

body.light-mode .guide-btn {
    color: #475569;
}

body.light-mode .guide-btn:hover {
    color: #1e293b;
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
}

body.light-mode .icon-header {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.guide-btn {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.6rem 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.guide-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border-color: rgba(139, 92, 246, 0.5);
    color: #fff;
    box-shadow: 0 8px 15px rgba(99, 102, 241, 0.25);
}

body.light-mode .guide-btn {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
    color: #334155;
}

body.light-mode .guide-btn:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-color: #818cf8;
    color: #1e293b;
    box-shadow: 0 8px 15px rgba(99, 102, 241, 0.15);
}
