/* Padel Kings - Page ultra-simplifiée */
:root {
    --pk-primary: #081420;
    --pk-primary-light: #13314D;
    --pk-text-primary: #BA914A;
    --pk-text-secondary: #EBC670;
    --pk-secondary: #192D3D;
    --pk-text-color: #ECDFACE;

    --font-title: 'Luckiest Guy', cursive;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--pk-text-color);
    min-height: 100vh;
    height: 100%;
    background: var(--pk-primary);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    gap: 3rem;
    background: linear-gradient(180deg, var(--pk-primary) 0%, var(--pk-primary-light) 100%);
}

/* Logo */
.logo {
    text-align: center;
}

.logo img {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--pk-text-primary);
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Boutons de téléchargement */
.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 300px;
}

.store-btn {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    height: 60px;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.btn-icon svg {
    width: 28px;
    height: 28px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}


/* Style App Store (noir classique) */
.app-store-btn {
    background: #000000;
    color: #ffffff;
    border: 1px solid #333333;
}

.app-store-btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.app-store-btn .btn-icon svg {
    color: #ffffff;
}

/* Style Google Play (officiel noir avec icône colorée) */
.play-store-btn {
    background: #000000;
    color: #ffffff;
    border: 1px solid #333333;
    border-radius: 6px;
}

.play-store-btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.play-store-btn .btn-icon svg {
    color: #ffffff;
}

/* Ajustement spécifique pour Google Play */
.play-store-btn .btn-subtitle {
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.play-store-btn .btn-title {
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* Amélioration de la typographie */
.btn-subtitle {
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.1rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
}



/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.logo {
    animation: fadeIn 0.6s ease-out;
}

.download-section {
    animation: fadeIn 0.6s ease-out 0.2s both;
}

/* Responsive */
@media (min-width: 400px) {
    .logo img {
        width: 180px;
        height: 180px;
    }
}

@media (min-width: 768px) {
    .container {
        gap: 4rem;
    }

    .download-section {
        max-width: 400px;
        flex-direction: row;
        gap: 1rem;
    }

    .store-btn {
        flex: 1;
        min-width: 180px;
    }

    .logo img {
        width: 200px;
        height: 200px;
    }

    .subtitle {
        font-size: 1.8rem;
    }
}

/* Focus pour accessibilité */
.store-btn:focus {
    outline: 3px solid var(--pk-text-primary);
    outline-offset: 2px;
}

/* Effet tactile mobile */
@media (hover: none) and (pointer: coarse) {
    .store-btn:active {
        transform: scale(0.98);
    }

    .store-btn:hover {
        transform: none;
    }
}