html {
    background-image: url(num.gif);
    background-position: center center;
    background-size: auto;
    background-repeat: repeat;
    background-attachment: fixed;
    min-height: 100%;
    scroll-behavior: smooth;
    scrollbar-color: #ff6b35 transparent;
    scrollbar-width: thin;
    background-color: #000000;
}

* {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

::selection {
    background: #ff6b35;
    color: #fff5f0;
}

/* animation */

@keyframes fadein {
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0px) scale(1, 1);
    }
    20% {
        transform: translateY(3px) scale(1.2, 0.8);
    }
    40% {
        transform: translateY(-4px) scale(0.8, 1.1);
    }
    60% {
        transform: translateY(-6px) scale(0.9, 1);
    }
    80% {
        transform: translateY(-2px) scale(1, 1);
    }
}

@keyframes pop {
    0% {
        scale: 0%;
    }
    100% {
        display: block;
        scale: 100%;
        opacity: 100%;
    }
}

/* body */

body {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    animation: fadein 2500ms ease-in;
    margin: auto;
    padding: 0 0 40px 0;
    width: 640px;
    max-width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff5f0;
    box-sizing: border-box;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background-color: transparent;
}

body * {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Game screen and guess screen use wider layout */
body.game-screen-active,
body.guess-screen-active {
    width: 1000px;
    max-width: 100%;
}


a {
    transition: all 200ms ease;
    color: #2b52ad;
    text-decoration: none;
}

a:hover {
    cursor: pointer;
    color: #ff6b35;
}

hr {
    border-top: #00303b 1px dotted;
    border-bottom: none;
}

/* header */

header {
    position: relative;
    z-index: 1;
    margin: 0 auto 10px auto;
    width: 320px;
    max-width: 100%;
}

header h1 {
    margin-bottom: 0px;
    font-size: 48px;
    font-family: 'Press Start 2P', monospace;
    color: #ff6b35;
    transition: color 200ms ease;
    line-height: 1.4;
}

header h1:hover {
    color: #ffaa66;
    cursor: pointer;
}

header p {
    margin-top: -12px;
    font-size: 12px;
    font-family: 'VT323', monospace;
    text-align: right;
    color: #fff5f0;
}

header a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 200ms ease;
}

header a:hover {
    color: #ffaa66;
}

header a:hover h1 {
    color: #ffaa66 !important;
}

header a h1 {
    transition: color 200ms ease;
}

/* landing-image */

.landingimage {
    position: relative;
    z-index: 0;
    margin: 0 auto;
    margin-top: -60px;
    width: 400px;
    max-width: 100%;
    height: 280px;
    max-height: 90vw;
    text-align: center;
}

#noema3d-canvas {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 0;
    margin: auto;
    width: 320px;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: auto;
    user-select: none;
    cursor: pointer;
}

/* game area */

.game-area {
    display: block;
    margin: auto;
    width: 400px;
    max-width: 100%;
}

/* Game screen uses wider layout */
#game-screen.active .game-area {
    width: 100%;
    max-width: 900px;
}

.screen {
    display: none;
    width: 100%;
}

.screen.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    animation: fadein 2000ms ease-in;
}

#game-screen.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

/* Hide header and 3D logo on guess screen */
#guess-screen.active ~ * header,
#guess-screen.active ~ header,
body:has(#guess-screen.active) header,
body:has(#guess-screen.active) .landingimage {
    display: none;
}

/* Hide header and landing image on game screen */
body.game-screen-active header,
body.game-screen-active .landingimage {
    display: none;
}

body.guess-screen-active header,
body.guess-screen-active .landingimage {
    display: none;
}

/* Game screen layout - CENTERED */
.game-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* Changed from center to allow vertical separation */
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
    margin: 50px auto;
    padding: 40px 60px;
    min-height: 450px;
}

/* Game screen and Guess screen - centered like home page */
body.guess-screen-active #game-screen .game-layout {
    /* Use default centered layout - same as home page */
}

/* COMPLETE RESTRUCTURE FOR GUESS SCREEN */
body.guess-screen-active #guess-screen .game-layout {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 20px !important;
    margin: 0 auto !important;
    max-width: 1200px !important;
    width: 100% !important;
}

.model-container {
    flex: 0 0 auto;
    order: 2;
    width: 320px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-top: -40px; /* Move model up */
}

/* Game screen model container */
body.guess-screen-active #game-screen .model-container {
    /* Use default flexbox positioning - centered */
}

/* Guess screen model container - at the top */
body.guess-screen-active #guess-screen .model-container {
    order: 1 !important;
    margin: 0 auto 0 auto !important;
    margin-top: 20px !important;
    z-index: 10;
    position: relative;
}

/* Game screen - content on left, model on right (matching home page) */
.game-content {
    order: 1;
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    min-width: 0;
    max-width: 550px;
    width: 100%;
    margin-top: 40px; /* Move content down */
}

/* Remove duplicate rule - handled above */

body.guess-screen-active #game-screen .game-content {
    /* Use default centered layout */
    align-items: center;
    text-align: center;
}

/* Guess screen content - pushed way down */
body.guess-screen-active #guess-screen .game-content {
    order: 2 !important;
    margin-top: 200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-top: 0 !important;
    width: 100% !important;
    max-width: 550px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 30px !important;
}

#noema3d-canvas-game {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Speech bubble - pointing right towards model (for game screen) */
.speech-bubble {
    position: relative;
    background: rgba(255, 245, 240, 0.95);
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 18px 24px;
    margin: 0;
    width: auto;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    align-self: flex-start;
}

/* Game screen - speech bubble pointing left towards model on left */
.speech-bubble::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 20px solid #ff6b35;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    left: -16px;
    top: 32px;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-right: 16px solid rgba(255, 245, 240, 0.95);
}

/* Guess page - speech bubble pointing left towards model on left */
body.guess-screen-active .speech-bubble::before {
    right: auto;
    left: -20px;
    border-left: none;
    border-right: 20px solid #ff6b35;
}

body.guess-screen-active .speech-bubble::after {
    right: auto;
    left: -16px;
    border-left: none;
    border-right: 16px solid rgba(255, 245, 240, 0.95);
}

/* Show question number on game screen and guess screen */
.speech-bubble .question-number {
    display: block !important;
    color: #ff6b35;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'VT323', monospace;
    animation: fadein 400ms ease-in 2000ms both;
}

/* Show question number on guess screen */
.guess-speech-bubble .question-number {
    display: block !important;
    color: #ff6b35;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'VT323', monospace;
}

.speech-bubble .question-text {
    color: #2c2c2c;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 600;
    font-family: 'VT323', monospace;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    word-wrap: break-word;
    white-space: normal;
    animation: fadein 400ms ease-in 2000ms both;
}

.welcome-message {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
    width: 400px;
    max-width: 100%;
}

.welcome-message h2 {
    color: #ff6b35;
    font-size: 18px;
    margin-bottom: 8px;
    font-family: 'Press Start 2P', monospace;
    line-height: 1.5;
}

.welcome-message p {
    color: #fff5f0;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
    font-family: 'VT323', monospace;
}

.welcome-message .disclaimer {
    margin: 20px 0;
    padding: 10px 10px 10px 10px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    text-align: center;
}

.welcome-message .disclaimer p {
    color: #fff5f0;
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.6;
    font-family: 'VT323', monospace;
}

.welcome-message .disclaimer p:first-child {
    color: #ff8800;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    font-style: italic;
    opacity: 1;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 136, 0, 0.5);
}

.welcome-message .disclaimer-text {
    color: #fff5f0;
    font-size: 12px;
    opacity: 0.85;
}

.progress-container {
    margin: 12px auto;
    padding: 14px 12px;
    background: rgba(255, 245, 240, 0.95);
    border-radius: 4px;
    border: 2px solid #ff6b35;
    width: 400px;
    max-width: 100%;
    text-align: center;
}

/* Hide progress on game screen */
#game-screen .progress-container {
    display: none;
}

.progress-label {
    color: #ff6b35;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'VT323', monospace;
}

.progress-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-bar {
    flex: 1;
    height: 16px;
    background: #ffe0d6;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid #ff6b35;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 8px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-text {
    color: #ff6b35;
    font-weight: 700;
    font-size: 16px;
    min-width: 45px;
    text-align: right;
    font-family: 'VT323', monospace;
}

.question-container {
    background: rgba(255, 245, 240, 0.95);
    border: 2px solid #ff6b35;
    border-radius: 4px;
    padding: 20px 16px;
    margin: 12px auto;
    text-align: center;
    width: 400px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.question-number {
    color: #ff6b35;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'VT323', monospace;
    animation: fadein 400ms ease-in 2000ms both;
}

.question-text {
    color: #2c2c2c;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 600;
    font-family: 'VT323', monospace;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    text-align: center;
    width: 100%;
    animation: fadein 400ms ease-in 2000ms both;
}

.answer-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin: 12px auto;
    width: 400px;
    max-width: 100%;
    justify-items: center;
}

/* Answer buttons on game screen */
#game-screen .answer-buttons {
    margin: 20px 0 0 0;
    width: 100%;
    max-width: 500px;
    justify-self: flex-start;
    gap: 12px;
}

.btn-answer {
    padding: 10px 14px;
    border: 2px inset #3f3f3f;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 200ms ease;
    color: white;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3);
    background-color: #c5c5c5;
    font-family: 'VT323', monospace;
}

.btn-answer:hover {
    filter: brightness(120%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-answer:active {
    border: 2px outset #3f3f3f;
}

.btn-yes {
    background-color: #4caf50;
}

.btn-probably {
    background-color: #8bc34a;
}

.btn-dont-know {
    background-color: #ff9800;
}

.btn-probably-not {
    background-color: #ff6b6b;
}

.btn-no {
    background-color: #f44336;
}

.btn {
    padding: 10px 18px;
    border: 2px inset #3f3f3f;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 200ms ease;
    color: white;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3);
    background-color: #c5c5c5;
    font-family: 'VT323', monospace;
}

/* Start Game button - bigger */
#start-btn {
    font-size: 24px;
    padding: 16px 32px;
    border: 3px solid #ff6b35;
}

.btn:hover {
    filter: brightness(120%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn:active {
    border: 2px outset #3f3f3f;
}

.btn-primary {
    background-color: #ff6b35;
}

.btn-success {
    background-color: #4caf50;
}

.btn-danger {
    background-color: #f44336;
}

.guess-container {
    text-align: center;
    padding: 16px;
    width: 400px;
    max-width: 100%;
    margin: auto;
}

.guess-container h2 {
    color: #ff6b35;
    font-size: 20px;
    margin-bottom: 12px;
    font-family: 'Press Start 2P', monospace;
    line-height: 1.5;
}

.guess-image-container {
    margin: 12px 0;
    text-align: center;
}

.guess-image {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    border-radius: 4px;
    border: 2px solid #ff6b35;
    object-fit: contain;
}

.guess-description {
    font-size: 1rem;
    color: #2c2c2c;
    margin: 12px 0;
    font-style: italic;
    line-height: 1.4;
}

.guess-text {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 12px 0;
    min-height: auto;
    display: block;
    text-align: center;
    font-family: 'VT323', monospace;
}

.guess-speech-bubble {
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
}

/* Guess screen speech bubble */
body.guess-screen-active #guess-screen .guess-speech-bubble {
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 500px !important;
}

.guess-speech-bubble .guess-title {
    color: #ff6b35;
    font-size: 18px;
    margin-bottom: 12px;
    font-family: 'Press Start 2P', monospace;
    line-height: 1.5;
}

.guess-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 500px;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Guess screen buttons - centered */
body.guess-screen-active #guess-screen .guess-buttons {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

#noema3d-canvas-guess {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.end-message {
    text-align: center;
    width: 400px;
    max-width: 100%;
    margin: auto;
}

.end-message h2 {
    color: #ff6b35;
    font-size: 24px;
    margin-bottom: 12px;
    font-family: 'Press Start 2P', monospace;
    line-height: 1.5;
}

.end-message p {
    color: #fff5f0;
    font-size: 18px;
    margin-bottom: 16px;
    font-family: 'VT323', monospace;
}

.loading {
    text-align: center;
    padding: 20px;
}

.spinner {
    border: 3px solid #ffe0d6;
    border-top: 3px solid #ff6b35;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading p {
    color: #ff6b35;
    font-size: 18px;
    font-weight: 600;
    font-family: 'VT323', monospace;
}

.input-text {
    padding: 10px 14px;
    border: 2px inset #3f3f3f;
    border-radius: 2px;
    font-size: 18px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 8px;
    font-family: 'VT323', monospace;
}

.input-text:focus {
    outline: none;
    border: 2px outset #3f3f3f;
}

#wrong-input {
    margin-top: 12px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px !important;
        padding-bottom: 60px !important;
    }
    
    header {
        padding: 10px 15px !important;
    }
    
    header h1 {
        font-size: 24px !important;
    }
    
    header p {
        display: none !important;
    }
    
    .landingimage {
        width: 280px !important;
        height: 240px !important;
        margin: -60px auto 10px auto !important;
    }
    
    .welcome-message {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin-top: 10px !important;
    }
    
    .welcome-message h2 {
        font-size: 16px !important;
    }
    
    .welcome-message p {
        font-size: 13px !important;
    }
    
    .disclaimer {
        margin: 15px 0 !important;
        padding: 8px !important;
    }
    
    .disclaimer p:first-child {
        font-size: 16px !important;
    }
    
    .disclaimer-text {
        font-size: 11px !important;
    }
    
    #start-btn {
        font-size: 20px !important;
        padding: 14px 24px !important;
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .logs-link {
        font-size: 20px !important;
        padding: 14px 24px !important;
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .copy-text {
        font-size: 18px !important;
        top: 10px !important;
        right: 10px !important;
    }
    
    .back-button {
        top: 10px !important;
        left: 10px !important;
        padding: 10px 16px !important;
        font-size: 16px !important;
    }
    
    .game-layout {
        flex-direction: column !important;
        padding: 20px 15px !important;
        gap: 20px !important;
    }
    
    .model-container {
        width: 100% !important;
        max-width: 280px !important;
        height: 240px !important;
        margin: 0 auto !important;
    }
    
    .game-content {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .speech-bubble {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
    }
    
    .question-text {
        font-size: 16px !important;
    }
    
    .answer-buttons {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        width: 100% !important;
    }
    
    .btn-answer {
        width: 100% !important;
        font-size: 16px !important;
        padding: 12px !important;
    }
    
    .guess-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .btn {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
        padding: 12px !important;
    }
    
    .guess-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
    }
    
    .guess-image {
        max-width: 200px !important;
        max-height: 200px !important;
    }
    
    .guess-text {
        font-size: 22px !important;
    }
    
    .guess-description {
        font-size: 14px !important;
    }
    
    footer {
        bottom: 10px !important;
        gap: 8px !important;
    }
    
    footer p {
        font-size: 10px !important;
    }
    
    .social-link {
        width: 32px !important;
        height: 32px !important;
    }
    
    .social-link svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    /* Guess page mobile styles */
    body.guess-screen-active {
        width: 100% !important;
        padding: 0 !important;
    }
    
    .page-container {
        flex-direction: column !important;
        padding: 20px 15px !important;
        gap: 20px !important;
    }
    
    .model-section {
        width: 100% !important;
        max-width: 280px !important;
        height: 240px !important;
        margin: 0 auto !important;
    }
    
    .content-section {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .guess-page-container {
        padding: 20px 15px !important;
        gap: 20px !important;
    }
    
    .guess-bubble {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
    }
    
    .guess-text {
        font-size: 20px !important;
    }
    
    .guess-description {
        font-size: 13px !important;
    }
    
    .guess-image-container {
        width: 100% !important;
    }
    
    .guess-image {
        max-width: 180px !important;
        max-height: 180px !important;
    }
    
    .back-button-question {
        font-size: 14px !important;
        padding: 8px 12px !important;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 20px !important;
    }
    
    .landingimage {
        width: 240px !important;
        height: 200px !important;
        margin: -60px auto 10px auto !important;
    }
    
    .welcome-message h2 {
        font-size: 14px !important;
    }
    
    #start-btn, .logs-link {
        font-size: 18px !important;
        padding: 12px 20px !important;
    }
}

/* Logs link - styled as button (inverted colors) */
.logs-link {
    display: inline-block;
    color: #ff6b35;
    text-decoration: none;
    font-family: 'VT323', monospace;
    font-size: 24px;
    font-weight: 600;
    padding: 16px 32px;
    border: 3px solid #ff6b35;
    border-radius: 4px;
    background-color: transparent;
    transition: all 200ms ease;
    cursor: pointer;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.logs-link:hover {
    background-color: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 107, 53, 0.5);
    text-decoration: none;
}

/* Copy text (CA: ...) */
.copy-text {
    cursor: pointer;
    transition: all 200ms ease;
    user-select: none;
}

.copy-text:hover {
    color: #ffaa66 !important;
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 170, 102, 0.5);
}

/* Back button */
.back-button {
    cursor: pointer;
    transition: all 200ms ease;
}

.back-button:hover {
    background-color: #ffaa66 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 12px rgba(255, 107, 53, 0.5) !important;
}

/* Back question button */
.btn-back-question,
.back-button-question {
    cursor: pointer;
    transition: all 200ms ease;
}

.btn-back-question:hover,
.back-button-question:hover {
    background-color: rgba(255, 107, 53, 0.8) !important;
    transform: scale(1.15) !important;
}

/* Social links footer */
footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 1000;
}

.social-link {
    color: #ff6b35;
    transition: all 200ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #ffaa66;
    transform: translateY(-3px) scale(1.1);
}

.social-link svg {
    width: 24px;
    height: 24px;
}
