* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: #0a1a2e;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    animation: fadeInBody 0.4s ease-out;
}

@keyframes fadeInBody {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

html {
    overflow-x: hidden;
    width: 100%;
}

body.features-page {
    background: #0a1a2e url("../images/Características.jpg") center center/cover no-repeat fixed;
    position: relative;
}

body.features-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 46, 0.85);
    z-index: 0;
    pointer-events: none;
}

body.features-page > * {
    position: relative;
    z-index: 1;
}

body.bonus-page {
    background: #0a1a2e url("../images/Bonos.jpg") center center/cover no-repeat fixed;
    position: relative;
}

body.bonus-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 46, 0.85);
    z-index: 0;
    pointer-events: none;
}

body.bonus-page > * {
    position: relative;
    z-index: 1;
}

body.faq-page {
    background: #0a1a2e url("../images/FAQ.jpg") center center/cover no-repeat fixed;
    position: relative;
}

body.faq-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 46, 0.85);
    z-index: 0;
    pointer-events: none;
}

body.faq-page > * {
    position: relative;
    z-index: 1;
}

body.game-page {
    background: #0a1a2e url("../images/El Juego.jpg") center center/cover no-repeat fixed;
    position: relative;
}

body.game-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 46, 0.85);
    z-index: 0;
    pointer-events: none;
}

body.game-page > * {
    position: relative;
    z-index: 1;
}

.header {
    background: rgba(10, 26, 46, 0.95);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.6s ease-out 0.1s forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.nav .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav .logo:hover {
    opacity: 0.8;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    touch-action: manipulation;
}

.nav a:hover {
    opacity: 0.7;
}


.hero {
    background: linear-gradient(135deg, #0a1a2e 0%, #1a2332 50%, #0f172a 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(79, 172, 254, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q25 30 50 50 T100 50' stroke='rgba(255,255,255,0.03)' fill='none' stroke-width='2'/%3E%3Cpath d='M0 60 Q25 40 50 60 T100 60' stroke='rgba(255,255,255,0.03)' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    padding: 120px 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    display: block;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 100%;
    opacity: 0.95;
}

.hero p strong {
    color: #4FC0FF;
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(79, 172, 254, 0.2);
}

.btn-primary {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.btn-primary:hover {
    background: #2a2a2a;
    border-color: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.google-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0;
    background: transparent;
    border: none;
}

.google-play-btn img {
    height: 60px;
    width: 155px;
    flex-shrink: 0;
    display: block;
}

.google-play-btn:has(img) {
    background: transparent;
}

.info-section .google-play-btn img,
.bonus-actions .google-play-btn img,
.content-actions .google-play-btn img {
    height: 60px;
    width: 155px;
}

.info-section {
    padding: 80px 20px;
    text-align: center;
    background: #0f172a;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.info-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.info-section .btn {
    font-size: 1.3em;
    padding: 18px 40px;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
    border: 2px solid #4FC0FF;
    background: linear-gradient(135deg, #4FC0FF 0%, #2E7D8A 100%);
    animation: pulse-glow 2s ease-in-out infinite;
}

.info-section .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(79, 172, 254, 0.6);
    background: linear-gradient(135deg, #5FD0FF 0%, #3E8D9A 100%);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4), 0 0 20px rgba(79, 172, 254, 0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(79, 172, 254, 0.6), 0 0 30px rgba(79, 172, 254, 0.4);
    }
}

.btn-large {
    font-size: 1.3em !important;
    padding: 18px 40px !important;
}

.btn-pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #0a1a2e;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
}

.feature-card {
    background: #1a2332;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.5s;
}

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

.feature-card:nth-child(3) {
    animation-delay: 0.7s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.feature-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    position: relative;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-card:nth-child(1) .feature-image {
    background: linear-gradient(135deg, #4FC0FF 0%, #2E7D8A 100%);
}

.feature-card:nth-child(2) .feature-image {
    background: linear-gradient(135deg, #10B981 0%, #047857 100%);
}

.feature-card:nth-child(3) .feature-image {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.feature-card h3 {
    padding: 25px;
    font-size: 1.5em;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 20px;
    flex: 1;
    background: rgba(26, 35, 50, 0.3);
    border-radius: 12px;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.article-page {
    max-width: 1200px;
}

.article-header {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    padding: 40px 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.article-header-text {
    flex: 1;
}

.article-header-image {
    flex: 1;
    max-width: 500px;
}

.article-header-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.article-intro {
    font-size: 1.2em;
    line-height: 1.8;
    opacity: 0.9;
    margin-top: 20px;
}

.article-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-title-with-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(79, 172, 254, 0.3);
}

.article-title-with-image h2 {
    margin: 0;
    flex: 1;
}

.article-title-image {
    flex: 0 0 300px;
    max-width: 300px;
}

.article-title-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.content h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #4FC0FF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content h2 {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.content h3 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ffffff;
}

.content p {
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.9;
}

.content-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(26, 35, 50, 0.5);
    border-radius: 8px;
    border-left: 4px solid #4FC0FF;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.content-section:nth-of-type(1) {
    animation-delay: 0.3s;
}

.content-section:nth-of-type(2) {
    animation-delay: 0.4s;
}

.content-section:nth-of-type(3) {
    animation-delay: 0.5s;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    padding: 30px;
    background: rgba(26, 35, 50, 0.5);
    border-radius: 8px;
    transition: background 0.3s;
}

.feature-item:hover {
    background: rgba(26, 35, 50, 0.7);
}

.feature-item h2 {
    color: #4FC0FF;
    margin-top: 0;
}

.bonus-section {
    max-width: 800px;
    margin: 0 auto;
}

.bonus-highlight {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
    border: 2px solid rgba(79, 172, 254, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.bonus-highlight h2 {
    font-size: 2.5em;
    color: #4FC0FF;
    margin-bottom: 20px;
}

.bonus-description {
    font-size: 1.2em;
}

.bonus-description strong {
    color: #4FC0FF;
    font-size: 1.3em;
}

.bonus-steps {
    background: rgba(26, 35, 50, 0.5);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.bonus-steps h3 {
    margin-top: 0;
    color: #4FC0FF;
}

.bonus-steps ol {
    margin-left: 20px;
    line-height: 2;
}

.bonus-steps li {
    margin-bottom: 10px;
}

.bonus-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: rgba(26, 35, 50, 0.5);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #4FC0FF;
    transition: background 0.3s;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.6s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.7s;
}

.faq-item:hover {
    background: rgba(26, 35, 50, 0.7);
}

.faq-item h3 {
    color: #4FC0FF;
    margin-top: 0;
}

.contact-intro {
    background: rgba(26, 35, 50, 0.5);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    background: rgba(26, 35, 50, 0.5);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(10, 26, 46, 0.6);
    color: #ffffff;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s;
    min-height: 44px;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4FC0FF;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background: rgba(26, 35, 50, 0.5);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.contact-info h2 {
    margin-top: 0;
    color: #4FC0FF;
}

.footer {
    background: #0a1a2e;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: max(40px, env(safe-area-inset-bottom, 40px));
    padding-left: max(20px, env(safe-area-inset-left, 20px));
    padding-right: max(20px, env(safe-area-inset-right, 20px));
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links img {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-links img:hover {
    opacity: 1;
}

.footer-legal {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal a {
    color: #4FC0FF;
    text-decoration: none;
    margin: 0 10px;
    transition: opacity 0.3s;
}

.footer-legal a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.fs-note {
    font-size: 0.9em;
    opacity: 0.7;
    margin: 15px 0;
    font-style: italic;
}

.last-updated {
    font-size: 0.9em;
    opacity: 0.7;
    font-style: italic;
    margin-bottom: 30px;
}


.stats-section {
    background: #0f172a;
    padding: 60px 20px;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(26, 35, 50, 0.5);
    border-radius: 8px;
    transition: transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.5s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.7s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    color: #4FC0FF;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
}

.reviews-section {
    padding: 80px 20px;
    background: #0a1a2e;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: rgba(26, 35, 50, 0.7);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #4FC0FF;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.review-card:nth-child(1) {
    animation-delay: 0.4s;
}

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

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

.review-card:nth-child(4) {
    animation-delay: 0.7s;
}

.review-card:nth-child(5) {
    animation-delay: 0.8s;
}

.review-card:nth-child(6) {
    animation-delay: 0.9s;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-weight: bold;
    font-size: 1.1em;
    color: #4FC0FF;
}

.review-rating {
    color: #F59E0B;
    font-size: 1.1em;
}

.review-text {
    margin-bottom: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

.review-date {
    font-size: 0.9em;
    opacity: 0.6;
    font-style: italic;
}

.articles-section {
    padding: 80px 20px;
    background: #0f172a;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.articles-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: rgba(26, 35, 50, 0.7);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.article-card:nth-child(1) {
    animation-delay: 0.4s;
}

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

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

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.article-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4FC0FF 0%, #2E7D8A 100%);
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    color: #4FC0FF;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.article-content p {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.7;
}

.article-link {
    color: #4FC0FF;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s;
}

.article-link:hover {
    opacity: 0.8;
}

.article-full {
    background: rgba(26, 35, 50, 0.5);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.article-full h2 {
    color: #4FC0FF;
    margin-bottom: 20px;
    font-size: 2em;
}

.article-full h3 {
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 15px;
}

.article-body {
    margin-top: 20px;
}

.article-body ul,
.article-body ol {
    margin-left: 20px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.article-body li {
    margin-bottom: 8px;
}

.table-container {
    overflow-x: auto;
    margin: 30px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(10, 26, 46, 0.6);
    border-radius: 8px;
    overflow: hidden;
}

.data-table thead {
    background: rgba(79, 172, 254, 0.2);
}

.data-table th {
    padding: 15px;
    text-align: left;
    font-weight: bold;
    color: #4FC0FF;
    border-bottom: 2px solid rgba(79, 172, 254, 0.3);
}

.data-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.9;
}

.data-table tbody tr {
    transition: background 0.3s;
}

.data-table tbody tr:hover {
    background: rgba(79, 172, 254, 0.1);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: rgba(26, 35, 50, 0.7);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.accordion-item:nth-child(1) {
    animation-delay: 0.2s;
}

.accordion-item:nth-child(2) {
    animation-delay: 0.3s;
}

.accordion-item:nth-child(3) {
    animation-delay: 0.4s;
}

.accordion-item:nth-child(4) {
    animation-delay: 0.5s;
}

.accordion-item:nth-child(5) {
    animation-delay: 0.6s;
}

.accordion-item:nth-child(6) {
    animation-delay: 0.7s;
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    min-height: 44px;
    touch-action: manipulation;
}

.accordion-header:hover {
    background: rgba(79, 172, 254, 0.1);
}

.accordion-header span:first-child {
    color: #4FC0FF;
}

.accordion-icon {
    font-size: 1.5em;
    color: #4FC0FF;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 25px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 20px 25px;
}

.accordion-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

.accordion-content ul,
.accordion-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.accordion-content li {
    margin-bottom: 8px;
}

.content-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.contact-physical-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
    padding: 30px;
    background: rgba(26, 35, 50, 0.5);
    border-radius: 12px;
}

.contact-physical-item {
    text-align: center;
}

.contact-physical-item h3 {
    color: #4FC0FF;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.contact-physical-item p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.contact-link {
    color: #4FC0FF;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-map-container {
    margin: 40px 0;
    padding: 30px;
    background: rgba(26, 35, 50, 0.5);
    border-radius: 12px;
}

.contact-map-container h3 {
    color: #4FC0FF;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5em;
}

.map-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.contact-detail-item {
    background: rgba(10, 26, 46, 0.6);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #4FC0FF;
}

.contact-detail-item h3 {
    color: #4FC0FF;
    margin-bottom: 15px;
    margin-top: 0;
}

.contact-detail-item p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.quick-faq {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.quick-faq-item {
    background: rgba(26, 35, 50, 0.5);
    padding: 20px;
    border-radius: 8px;
}

.quick-faq-item h4 {
    color: #4FC0FF;
    margin-bottom: 10px;
    margin-top: 0;
}

.quick-faq-item p {
    opacity: 0.9;
    line-height: 1.7;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.resource-card {
    background: rgba(26, 35, 50, 0.7);
    padding: 25px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: #4FC0FF;
}

.resource-card h3 {
    color: #4FC0FF;
    margin-bottom: 10px;
    margin-top: 0;
}

.resource-card p {
    opacity: 0.9;
    margin: 0;
}

.contact-actions {
    margin-top: 30px;
    text-align: center;
}

.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.thank-you-icon {
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-icon svg {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.thank-you-container h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #4FC0FF;
}

.thank-you-message {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-info {
    background: rgba(26, 35, 50, 0.7);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: left;
}

.thank-you-info h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #4FC0FF;
}

.info-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4FC0FF 0%, #2E7D8A 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #4FC0FF;
}

.step-content p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.7;
}

.thank-you-bonus {
    background: rgba(79, 172, 254, 0.1);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    border: 2px solid rgba(79, 172, 254, 0.3);
}

.thank-you-bonus h2 {
    color: #4FC0FF;
    margin-bottom: 15px;
}

.thank-you-bonus p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.thank-you-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

@media (max-width: 480px) {

    .hero {
        padding: 40px 10px;
        padding-top: max(40px, calc(env(safe-area-inset-top, 0px) + 40px));
        padding-bottom: max(10px, calc(env(safe-area-inset-bottom, 0px) + 10px));
    }

    .hero h1 {
        font-size: 1.3em;
        letter-spacing: 0.5px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.85em;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .hero-content {
        gap: 25px;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-buttons {
        gap: 15px;
        width: 100%;
    }

    .hero-buttons .btn {
        font-size: 0.9em;
        padding: 12px 20px;
    }

    .info-section {
        padding: 40px 15px;
    }

    .info-section h2 {
        font-size: 1.3em;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .info-section .btn {
        font-size: 1em;
        padding: 14px 28px;
    }

    .hero-image {
        width: 100%;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
    }

    .content {
        padding: 20px 10px;
    }

    .content h1 {
        font-size: 1.6em;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .content h2 {
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .content h3 {
        font-size: 1.1em;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .content p {
        font-size: 0.9em;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .data-table {
        font-size: 0.7em;
    }

    .data-table th,
    .data-table td {
        padding: 6px 4px;
        word-break: break-word;
    }

    .google-play-btn img {
        height: 45px;
        width: 120px;
    }

    .stats-section {
        padding: 40px 15px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2em;
    }

    .stat-label {
        font-size: 0.85em;
    }

    .reviews-section,
    .articles-section {
        padding: 40px 15px;
    }

    .reviews-section h2,
    .articles-section h2 {
        font-size: 1.5em;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .reviews-grid,
    .articles-grid {
        gap: 20px;
    }

    .review-card,
    .article-card {
        padding: 20px 15px;
    }

    .features-grid {
        padding: 40px 15px;
        gap: 20px;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .feature-image {
        height: 180px;
    }

    .bonus-highlight {
        padding: 20px 15px;
        margin-bottom: 25px;
    }

    .bonus-highlight h2 {
        font-size: 1.5em;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .bonus-description {
        font-size: 0.9em;
        line-height: 1.6;
    }

    .accordion-header {
        font-size: 0.95em;
        padding: 15px 15px;
    }

    .accordion-content {
        padding: 15px 15px;
    }

    .accordion-content p {
        font-size: 0.9em;
        line-height: 1.6;
    }

    .thank-you-container {
        padding: 20px 10px;
    }

    .thank-you-container h1 {
        font-size: 1.5em;
        line-height: 1.3;
    }

    .thank-you-message {
        font-size: 0.9em;
    }

    .thank-you-info {
        padding: 20px 15px;
    }

    .article-full {
        padding: 20px 10px;
    }

    .article-header {
        padding: 15px 0;
        gap: 20px;
    }

    .article-header-text h1 {
        font-size: 1.5em;
        line-height: 1.3;
    }

    .contact-form {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9em;
        padding: 10px 12px;
    }

    .contact-details,
    .contact-physical-info,
    .quick-faq,
    .resources-grid {
        gap: 15px;
    }

    .contact-physical-info {
        padding: 20px 15px;
    }

    .contact-map-container {
        padding: 20px 15px;
    }

    .map-wrapper iframe {
        height: 250px;
    }

    .content-section {
        padding: 20px 10px;
        margin: 25px 0;
    }

    .content-actions {
        flex-direction: column;
        gap: 15px;
    }

    .footer {
        padding: 30px 15px;
    }

    .footer-legal {
        font-size: 0.8em;
    }

    .footer-legal a {
        display: block;
        margin: 8px 0;
    }

    .table-container {
        margin: 20px -10px;
    }

    .article-title-with-image {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 15px;
    }

    .article-title-image {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .article-title-with-image h2 {
        font-size: 1.3em;
        line-height: 1.3;
    }


    .content {
        margin: 40px auto;
        padding: 30px 10px;
    }

    .feature-card h3 {
        font-size: 1.2em;
        padding: 20px 15px;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 46, 0.98);
    z-index: 9999;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-100%);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    padding: 80px 20px 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-menu.active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.mobile-menu .nav {
    display: block !important;
    visibility: visible !important;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.mobile-menu .nav-list {
    display: flex !important;
    visibility: visible !important;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-menu .nav-list li {
    display: block !important;
    visibility: visible !important;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .nav-list li:last-child {
    border-bottom: none;
}

.mobile-menu .nav-list a {
    display: block !important;
    color: var(--text-primary, #ffffff) !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 20px 15px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
    min-height: 44px;
    touch-action: manipulation;
}

.mobile-menu .nav-list a:hover,
.mobile-menu .nav-list a:focus {
    background-color: rgba(79, 172, 254, 0.2);
    color: #4FC0FF !important;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        padding: 10px 15px;
        padding-top: max(10px, env(safe-area-inset-top, 10px));
        padding-left: max(15px, env(safe-area-inset-left, 15px));
        padding-right: max(15px, env(safe-area-inset-right, 15px));
    }

    .nav .logo {
        font-size: 1.3em;
    }

    .nav-list {
        display: none !important;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-menu {
        padding-top: max(80px, calc(env(safe-area-inset-top, 0px) + 80px));
        padding-bottom: max(20px, calc(env(safe-area-inset-bottom, 0px) + 20px));
        padding-left: max(20px, env(safe-area-inset-left, 20px));
        padding-right: max(20px, env(safe-area-inset-right, 20px));
    }

    .mobile-menu .nav-list a {
        font-size: 1.1rem;
        padding: 18px 15px;
    }


    .hero {
        padding: 60px 15px;
        padding-top: max(60px, calc(env(safe-area-inset-top, 0px) + 60px));
        padding-bottom: max(15px, calc(env(safe-area-inset-bottom, 0px) + 15px));
        padding-left: max(15px, env(safe-area-inset-left, 15px));
        padding-right: max(15px, env(safe-area-inset-right, 15px));
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-image {
        max-width: 100%;
        width: 100%;
        order: -1;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .info-section {
        padding: 60px 15px;
    }

    .info-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .info-section .btn {
        font-size: 1.1em;
        padding: 16px 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 50px 15px;
        gap: 25px;
    }

    .feature-image {
        height: 200px;
    }

    .content {
        margin: 40px auto;
        padding: 30px 15px;
    }

    .content h1 {
        font-size: 2em;
    }

    .bonus-highlight {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .bonus-highlight h2 {
        font-size: 1.8em;
        margin-bottom: 18px;
    }

    .bonus-description {
        font-size: 1em;
        line-height: 1.7;
    }

    .bonus-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .bonus-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-form {
        padding: 25px;
    }

    .stats-section {
        padding: 50px 15px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2em;
    }

    .stat-label {
        font-size: 0.9em;
    }

    .reviews-section,
    .articles-section {
        padding: 60px 15px;
    }

    .reviews-section h2,
    .articles-section h2 {
        font-size: 1.8em;
        margin-bottom: 35px;
    }

    .reviews-grid,
    .articles-grid {
        gap: 25px;
    }

    .review-card,
    .article-card {
        padding: 25px 20px;
    }

    .reviews-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-full {
        padding: 30px 20px;
    }

    .article-header {
        padding: 25px 0;
        gap: 25px;
    }

    .article-header-text h1 {
        font-size: 1.8em;
    }

    .data-table {
        font-size: 0.85em;
    }

    .data-table th,
    .data-table td {
        padding: 10px 8px;
        word-break: break-word;
    }

    .table-container {
        margin: 25px -15px;
    }

    .contact-details,
    .contact-physical-info,
    .quick-faq,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .contact-physical-info {
        padding: 20px;
    }

    .contact-map-container {
        padding: 20px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    body.features-page,
    body.bonus-page,
    body.faq-page,
    body.game-page {
        background-attachment: scroll;
    }

    .info-section .btn {
        width: 100%;
        max-width: 300px;
    }

    .info-section .google-play-btn {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .info-section .google-play-btn img {
        height: 50px;
        width: auto;
        max-width: 155px;
    }

    .bonus-actions .google-play-btn,
    .content-actions .google-play-btn {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .bonus-actions .google-play-btn img,
    .content-actions .google-play-btn img {
        height: 50px;
        width: auto;
        max-width: 155px;
    }

    .accordion-container {
        gap: 12px;
    }

    .accordion-header {
        font-size: 1em;
        padding: 15px 18px;
    }

    .accordion-content {
        padding: 15px 18px;
    }

    .accordion-content p,
    .accordion-content ul,
    .accordion-content ol {
        font-size: 0.95em;
        line-height: 1.7;
    }

    .content-actions {
        flex-direction: column;
        align-items: center;
    }

    .content-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .article-header {
        flex-direction: column;
        gap: 30px;
        padding: 20px 0;
    }

    .article-header-image {
        max-width: 100%;
        width: 100%;
        flex: 1 1 100%;
        order: -1;
    }

    .article-header-image img {
        width: 100%;
        max-width: 100%;
    }

    .article-title-image {
        max-width: 100%;
        width: 100%;
        flex: 1 1 100%;
    }

    .article-title-image img {
        width: 100%;
        max-width: 100%;
    }

    .article-header-text {
        text-align: center;
    }

    .article-actions {
        flex-direction: column;
        align-items: center;
    }

    .article-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .thank-you-container {
        padding: 20px 15px;
    }

    .thank-you-container h1 {
        font-size: 2em;
    }

    .thank-you-message {
        font-size: 1em;
    }

    .thank-you-info {
        padding: 25px 20px;
    }

    .info-step {
        flex-direction: column;
        gap: 15px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .thank-you-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 25px -15px;
    }

    .data-table {
        min-width: 600px;
        font-size: 0.85em;
    }

    .data-table th,
    .data-table td {
        padding: 10px 8px;
        word-break: break-word;
    }

    .article-title-with-image {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 20px;
    }

    .article-title-image {
        max-width: 100%;
        width: 100%;
        flex: 1 1 100%;
    }

    .article-title-image img {
        width: 100%;
        max-width: 100%;
    }

    .article-title-with-image h2 {
        font-size: 1.5em;
        line-height: 1.3;
    }

    .contact-physical-item h3 {
        font-size: 1.1em;
    }

    .footer {
        padding: 30px 15px;
        padding-bottom: max(30px, calc(env(safe-area-inset-bottom, 0px) + 30px));
        padding-left: max(15px, env(safe-area-inset-left, 15px));
        padding-right: max(15px, env(safe-area-inset-right, 15px));
    }

    .footer-legal {
        font-size: 0.85em;
        flex-wrap: wrap;
        gap: 5px;
    }

    .footer-legal a {
        margin: 0 5px;
    }

    .content-section {
        padding: 20px 15px;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .google-play-btn {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-buttons .google-play-btn img {
        height: 50px;
        width: auto;
        max-width: 155px;
    }
}


@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

