* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFD49B;
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 2rem;
    margin-top: 1rem;
    background-color: #FFD49B;
    position: relative;
}

.renverser-container {
    position: absolute;
    left: 2rem;
}

.renverser-image {
    height: 150px;
    width: auto;
    object-fit: contain;
    animation: slideDownRenverser 1.5s ease-out forwards;
    transform: translateY(-120px);
    opacity: 0;
}

@keyframes slideDownRenverser {
    0% {
        transform: translateY(-120px);
        opacity: 0;
    }
    100% {
        transform: translateY(-25px);
        opacity: 1;
    }
}

@keyframes dropFromSky {
    0% {
        opacity: 0;
        transform: translateY(-200px) scale(0.3);
    }
    60% {
        opacity: 1;
        transform: translateY(20px) scale(1.1);
    }
    80% {
        transform: translateY(-10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.logo-container {
    display: flex;
    align-items: center;
}

.planche-image {
    height: 180px;
    width: auto;
    object-fit: contain;
    animation: slideDown 1.5s ease-out 1s forwards;
    transform: translateY(-100px);
    opacity: 0;
    margin-left: 10rem;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    60% {
        transform: translateY(-22px);
        opacity: 1;
    }
    75% {
        transform: translateY(-32px);
        opacity: 1;
    }
    85% {
        transform: translateY(-24px);
        opacity: 1;
    }
    95% {
        transform: translateY(-28px);
        opacity: 1;
    }
    100% {
        transform: translateY(-26px);
        opacity: 1;
    }
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.buy-button {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 0, 0, 0.3);
    color: #333;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.buy-button:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    padding: 2rem;
}

.hero-section {
    margin-top: 1.5rem;
    padding: 2rem;
    opacity: 0;
    animation: dropFromSky 0.8s ease-in 0.5s forwards;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.hero-left {
    flex: 1;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.contract-section h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contract-input {
    display: flex;
    border: 4px solid #000;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 6px 6px 0px #161515;
    align-items: center;
}

.contract-input input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    font-size: 1.1rem;
    background-color: transparent;
    color: #333;
    font-weight: 500;
}

.contract-input input:focus {
    outline: none;
}

.copy-button {
    background-color: #ff6b35;
    color: white;
    border: none;
    margin: 6px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0px #333;
}

.copy-button:hover {
    background-color: #e55a2b;
    transform: scale(1.05);
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.3));
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.hero-image.active {
    opacity: 1;
}

.hero-image.image-voici {
    position: relative;
}

/* Killer Look Section */
.killer-look-section {
    background-color: #FFD49B;
    padding: 4rem 0 4rem 0;
    margin-top: 2rem;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.killer-look-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.killer-look-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.killer-look-subtitle {
    font-size: 2rem;
    color: #333;
    margin-bottom: auto;
    font-weight: 500;
    line-height: 1.2;
}

.killer-look-footer {
    font-size: 1rem;
    color: #666;
    margin-top: 3rem;
    margin-bottom: 0;
    font-weight: 400;
    opacity: 0.8;
    font-style: italic;
}

/* Meme Gallery Styles */
.meme-gallery-container {
    position: relative;
    width: 100%;
    margin-top: 4rem;
    perspective: 1200px;
    height: 320px;
    overflow: visible;
}

.meme-carousel {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform-style: preserve-3d;
}

.meme-track {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    display: flex;
    gap: 3rem;
    white-space: nowrap;
}

.meme-item {
    flex-shrink: 0;
    width: 240px;
    height: 300px;
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform-origin: center center;
    backface-visibility: hidden;
    transition: transform 0.1s ease;
    position: relative;
    transform-style: preserve-3d;
}

/* Effet de conteneur bombé avec bords pliés */
.meme-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 5px;
    right: 5px;
    height: 8px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
    border-radius: 15px 15px 0 0;
    transform: perspective(200px) rotateX(45deg);
    z-index: -1;
}

.meme-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 5px;
    right: 5px;
    height: 8px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
    border-radius: 0 0 15px 15px;
    transform: perspective(200px) rotateX(-45deg);
    z-index: -1;
}

/* Effet de bombement du conteneur principal */
.meme-item .meme-content {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}



.meme-item .meme-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    position: relative;
    z-index: 1;
}

.meme-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}



/* Responsive design */
@media (max-width: 768px) {
    .header {
        padding: 0.5rem 1rem;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .buy-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-section h2 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .killer-look-title {
        font-size: 2.5rem;
    }
    
    .killer-look-subtitle {
        font-size: 1.5rem;
    }
    
    .killer-look-section {
        padding: 3rem 0 2rem 0;
    }
    
    .killer-look-content {
        padding: 0 1rem;
    }
    
    .meme-gallery-container {
        height: 250px;
        margin-top: 3rem;
        perspective: 800px;
    }
    
    .meme-item {
        width: 180px;
        height: 230px;
    }
    
    .meme-item::before,
    .meme-item::after {
        height: 6px;
        left: 3px;
        right: 3px;
    }
    
    .meme-track {
        gap: 2rem;
    }
}

/* Meme Generator Section */
.meme-generator-section {
    background-color: #FFD49B;
    padding: 4rem 0;
    margin-top: 8rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.generator-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.generator-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.generator-interface {
    background: #FFD49B;
    border-radius: 15px;
    padding: 2rem;
    width: 650px;
    height: 550px;
    box-shadow: 3px 3px 8px rgba(39, 38, 38, 0.8), -4px -4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(170, 160, 160, 0.6);
    position: relative;
    display: flex;
    flex-direction: column;
}

.generator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.generator-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nomnom-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #333;
}

.editor-text {
    background: #333;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.upload-btn {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.upload-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.generator-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tab-btn {
    background: #ffffff;
    border: 1px solid #ccc;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
    min-width: 70px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-btn.active {
    background: #333;
    color: white;
    border-color: #333;
}

.tab-btn:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.tab-btn.active:hover {
    background: #555;
}

.generator-canvas {
    background: #FFD49B;
    border-radius: 12px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 350px;
}

.canvas-area {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#memeCanvas {
    max-width: 100%;
    max-height: 100%;
    width: 580px;
    height: 320px;
    cursor: crosshair;
    background: #FFD49B;
    border: 2px dashed #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Panel de stickers */
.stickers-panel {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 420px;
    max-width: calc(100vw - 40px);
    max-height: 280px;
    overflow-y: auto;
}

.stickers-panel h4 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.stickers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.sticker-item {
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.sticker-item img {
    width: 100%;
    height: 100%;
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.sticker-item:hover {
    background: #e9ecef;
    border-color: #007bff;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* Styles pour les éléments sélectionnés sur le canvas */
.selection-box {
    position: absolute;
    border: 2px dashed #007bff;
    background: rgba(0, 123, 255, 0.1);
    pointer-events: none;
}

.resize-handle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #007bff;
    border: 1px solid #fff;
    border-radius: 50%;
}

.resize-handle.nw { top: -4px; left: -4px; cursor: nw-resize; }
.resize-handle.ne { top: -4px; right: -4px; cursor: ne-resize; }
.resize-handle.sw { bottom: -4px; left: -4px; cursor: sw-resize; }
.resize-handle.se { bottom: -4px; right: -4px; cursor: se-resize; }
.resize-handle.rotate { top: -20px; left: 50%; transform: translateX(-50%); cursor: pointer; background: #28a745; }

.generator-right {
    flex: 1;
    text-align: left;
}

.generator-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
    word-spacing: 0.1em;
    text-align: center;
}

.generator-description {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.6;
    text-align: center;
}

.generator-description strong {
    color: #ff6b35;
    font-weight: 700;
}

.try-now-btn {
    background: #333;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin: 0 auto 4rem auto;
    display: block;
    letter-spacing: 0.5px;
}

.try-now-btn:hover {
    background: #555;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.memes-text {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}

/* Responsive Generator */
@media (max-width: 768px) {
    .generator-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .generator-interface {
        width: 100%;
        max-width: 350px;
    }
    
    .generator-title {
        font-size: 2rem;
    }
    
    .memes-text {
        font-size: 2rem;
    }
    
    .generator-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .generator-tabs {
        justify-content: center;
    }
    
    /* Panel de stickers responsive */
    .stickers-panel {
        width: 90vw;
        max-width: 320px;
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
        max-height: 200px;
    }
    
    .stickers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .sticker-item {
        padding: 0.4rem;
        min-height: 50px;
    }
    
    .sticker-item img {
        max-width: 35px;
        max-height: 35px;
    }
}

/* Game Section */
.game-section {
    background-color: #FFD49B;
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-content {
    max-width: 1000px;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.game-header {
    display: flex;
    justify-content: center;
}

/* Titre de la section Game */
.game-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #333 0%, #555 50%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}

.game-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.6;
}

.game-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #666, transparent);
    border-radius: 2px;
}

/* Bouton d'action avec effet de verre */
.glass-btn-action {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.2rem 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



.glass-btn-action:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.glass-btn-action:active {
    transform: translateY(0);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

/* Effet de brillance pour le bouton Play seulement */
.glass-btn-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s;
}

.glass-btn-action:hover::before {
    left: 100%;
}

/* Conteneur de prévisualisation du jeu */
.game-preview-container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
}

.game-preview {
    width: 450px;
    height: 320px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.preview-placeholder {
    text-align: center;
    color: #555;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.preview-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
}

.game-footer {
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .game-section {
        padding: 4rem 0;
    }
    
    .game-content {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .game-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .glass-btn-action {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
    
    .game-preview-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .game-preview {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }
    
    .placeholder-icon {
        font-size: 3rem;
    }
    
    .preview-placeholder p {
        font-size: 1rem;
    }
}

/* Image à l’intérieur des conteneurs de prévisualisation */
.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplit complètement sans bandes vides */
    border-radius: inherit; /* épouse les coins arrondis du conteneur */
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #FFD49B;
    padding: 3rem 0 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-weight: 400;
}

.disclaimer-text strong {
    color: #333;
    font-weight: 600;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0 1.5rem 0;
}

.footer-social-link {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-social-link:hover {
    color: #333;
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.footer-social-link svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.footer-social-svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.copyright-text {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    font-weight: 400;
    opacity: 0.8;
}

/* Responsive Disclaimer */
@media (max-width: 768px) {
    .disclaimer-section {
        padding: 2rem 0 1rem 0;
    }
    
    .disclaimer-content {
        padding: 0 1rem;
    }
    
    .disclaimer-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-social-links {
        gap: 0.8rem;
        margin: 1.2rem 0 1.2rem 0;
        flex-wrap: wrap;
    }
    
    .footer-social-link {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
    
    .footer-social-link svg {
        width: 10px;
        height: 10px;
    }
    
    .footer-social-svg {
        width: 12px;
        height: 12px;
    }
    
    .copyright-text {
        font-size: 0.8rem;
        margin: 0;
    }
}
