/* TintTap Gaming-themed styles */
/* Import base styles from parent directory */
@import url('../styles.css');

/* TintTap-specific overrides and additions */

/* Modern blue gradient background for TintTap */
body {
    background: #0a1428;
    background-image:
        radial-gradient(circle at 25% 25%, #1e40af 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #3b82f6 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, #60a5fa 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, #1d4ed8 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, #2563eb 0%, transparent 45%),
        linear-gradient(135deg, #0a1428 0%, #1e293b 25%, #0f172a 50%, #1e293b 75%, #0a1428 100%);
    background-size: 300px 300px, 400px 400px, 250px 250px, 350px 350px, 280px 280px, 100% 100%;
    background-position: 0 0, 200px 100px, 100px 300px, 300px 200px, 400px 50px, 0 0;
    animation: blueFlow 35s ease-in-out infinite;
}

@keyframes blueFlow {
    0%, 100% {
        background-position: 0 0, 200px 100px, 100px 300px, 300px 200px, 400px 50px, 0 0;
    }
    33% {
        background-position: 150px 50px, 350px 150px, 250px 350px, 450px 250px, 550px 100px, 0 0;
    }
    66% {
        background-position: 300px 100px, 500px 200px, 400px 400px, 600px 300px, 700px 150px, 0 0;
    }
}

/* Modern blue particle system for TintTap */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 30px 50px, #3b82f6, transparent),
        radial-gradient(1px 1px at 80px 90px, #60a5fa, transparent),
        radial-gradient(1.5px 1.5px at 120px 60px, #1e40af, transparent),
        radial-gradient(2px 2px at 170px 110px, #2563eb, transparent),
        radial-gradient(1px 1px at 220px 40px, #60a5fa, transparent),
        radial-gradient(1.5px 1.5px at 260px 80px, #3b82f6, transparent),
        radial-gradient(1px 1px at 310px 120px, #1d4ed8, transparent),
        radial-gradient(2px 2px at 360px 30px, #2563eb, transparent);
    background-repeat: repeat;
    background-size: 300px 150px;
    animation: blueSparkles 18s linear infinite;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

@keyframes blueSparkles {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-150px) translateX(30px); }
}

/* Header adjustments for TintTap pages */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}


.back-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.back-link::before {
    content: '←';
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.back-link:hover {
    color: #ffd030;
    text-shadow: 0 0 15px rgba(255, 208, 48, 0.8);
    transform: translateX(-5px);
}

.back-link:hover::before {
    transform: translateX(-3px);
}

/* Modern blue hero section for TintTap */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse at 70% 80%, rgba(96, 165, 250, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse at 50% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 80%);
    animation: heroBlueFlow 12s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes heroBlueFlow {
    0% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.05) rotate(1deg);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.game-icon-large {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.game-icon-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: iconBlueGlow 6s ease-in-out infinite alternate;
}

@keyframes iconBlueGlow {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.tinttap-icon-large {
    position: relative;
    width: 120px;
    height: 120px;
    z-index: 2;
}

.tinttap-icon-large .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    animation: float 4s ease-in-out infinite;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.tinttap-icon-large .red {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow:
        0 0 30px rgba(29, 78, 216, 0.8),
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.tinttap-icon-large .blue {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    bottom: 0;
    left: 0;
    animation-delay: -1.3s;
    box-shadow:
        0 0 30px rgba(59, 130, 246, 0.8),
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.tinttap-icon-large .yellow {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    bottom: 0;
    right: 0;
    animation-delay: -2.6s;
    box-shadow:
        0 0 30px rgba(30, 64, 175, 0.8),
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.hero-download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2.5rem 0 1.5rem 0;
}

.hero-download-btn {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

.hero-download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

.hero-download-btn img {
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-secondary-buttons {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-button.secondary:hover::before {
    left: 100%;
}

/* Phone mockup with enhanced gaming aesthetic */
.phone-mockup {
    width: 200px;
    height: 350px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 25px;
    padding: 20px;
    position: relative;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transform: translateX(-50%);
}

.phone-mockup::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transform: translateX(-50%);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1428, #1e293b);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-simulation {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    animation: gameplaySimulation 6s ease-in-out infinite;
}

@keyframes gameplaySimulation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.player-sim {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    box-shadow:
        0 0 20px rgba(29, 78, 216, 0.8),
        0 5px 15px rgba(0, 0, 0, 0.3);
    animation: playerBluePulse 3s ease-in-out infinite alternate;
    position: relative;
    z-index: 3;
}

@keyframes playerBluePulse {
    0% {
        transform: scale(1);
        background: linear-gradient(135deg, #1d4ed8, #2563eb);
    }
    33% {
        transform: scale(1.1);
        background: linear-gradient(135deg, #3b82f6, #60a5fa);
    }
    66% {
        transform: scale(1.05);
        background: linear-gradient(135deg, #1e40af, #3b82f6);
    }
    100% {
        transform: scale(1.15);
        background: linear-gradient(135deg, #2563eb, #3b82f6);
    }
}

.gate-sim {
    width: 80px;
    height: 12px;
    border-radius: 6px;
    position: relative;
    animation: gateMove 4s linear infinite;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.gate-sim.gate-red {
    background: linear-gradient(90deg, #1d4ed8, #2563eb);
    box-shadow:
        0 0 15px rgba(29, 78, 216, 0.6),
        0 5px 20px rgba(0, 0, 0, 0.3);
    animation-delay: 0s;
}

.gate-sim.gate-blue {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    box-shadow:
        0 0 15px rgba(59, 130, 246, 0.6),
        0 5px 20px rgba(0, 0, 0, 0.3);
    animation-delay: -1.3s;
}

.gate-sim.gate-yellow {
    background: linear-gradient(90deg, #1e40af, #3b82f6);
    box-shadow:
        0 0 15px rgba(30, 64, 175, 0.6),
        0 5px 20px rgba(0, 0, 0, 0.3);
    animation-delay: -2.6s;
}

@keyframes gateMove {
    0% {
        transform: translateX(100px) scale(0.5);
        opacity: 0;
    }
    20% {
        transform: translateX(50px) scale(0.8);
        opacity: 1;
    }
    80% {
        transform: translateX(-10px) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-100px) scale(1.2);
        opacity: 0;
    }
}

/* Game info section with modern blue styling */
.game-info {
    padding: 80px 0;
    background: rgba(10, 20, 40, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
}

.game-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(96, 165, 250, 0.03) 0%, transparent 50%),
        linear-gradient(90deg, rgba(37, 99, 235, 0.02) 0%, transparent 50%);
    animation: sectionBlueFlow 12s ease-in-out infinite;
}

@keyframes sectionBlueFlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.game-info h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.5);
}

.gameplay-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(29, 78, 216, 0.1) 0%,
        rgba(59, 130, 246, 0.1) 50%,
        rgba(96, 165, 250, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step > * {
    position: relative;
    z-index: 2;
}

.step:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(59, 130, 246, 0.2);
}

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

.step-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.tap-icon {
    font-size: 3rem;
    animation: tapBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.5));
}

@keyframes tapBounce {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.2) translateY(-10px); }
}

.match-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.mini-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    animation: miniFloat 3s ease-in-out infinite;
    box-shadow: 0 0 15px currentColor;
}

.mini-circle.red {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.mini-gate {
    width: 40px;
    height: 8px;
    border-radius: 4px;
    animation: miniFloat 3s ease-in-out infinite reverse;
    box-shadow: 0 0 15px currentColor;
}

.mini-gate.red {
    background: linear-gradient(90deg, #1d4ed8, #2563eb);
}

@keyframes miniFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.score-icon {
    font-size: 3rem;
    animation: scoreBlueGlow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 15px rgba(96, 165, 250, 0.8));
}

@keyframes scoreBlueGlow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(96, 165, 250, 0.8));
    }
    100% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 25px rgba(59, 130, 246, 1));
    }
}

.step h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Features section with gaming aesthetics */
.features {
    padding: 80px 0;
    color: white;
    position: relative;
}

.features h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.5);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(29, 78, 216, 0.05) 0%,
        rgba(59, 130, 246, 0.05) 50%,
        rgba(96, 165, 250, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(59, 130, 246, 0.2);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: featureFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.5));
}

@keyframes featureFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Download section with modern blue styling */
.download {
    padding: 80px 0;
    background: rgba(10, 20, 40, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 60%);
    animation: downloadBlueGlow 10s ease-in-out infinite alternate;
}

@keyframes downloadBlueGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.download-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.5);
}

.download-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.download-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: rgba(96, 165, 250, 0.3);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #60a5fa;
    text-shadow: 0 0 15px rgba(96, 165, 250, 0.5);
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.download-btn {
    transition: all 0.3s ease;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(29, 78, 216, 0.1),
        rgba(59, 130, 246, 0.1),
        rgba(96, 165, 250, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.download-btn img {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.download-btn:hover::before {
    opacity: 1;
}

.download-btn:hover img {
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.5));
}

/* Support section with gaming theme */
.support {
    padding: 80px 0;
    color: white;
    position: relative;
}

.support h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.5);
}

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

.support-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.support-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(29, 78, 216, 0.05) 0%,
        rgba(59, 130, 246, 0.05) 50%,
        rgba(96, 165, 250, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-item > * {
    position: relative;
    z-index: 2;
}

.support-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(59, 130, 246, 0.2);
}

.support-item:hover::before {
    opacity: 1;
}

.support-item h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #60a5fa;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

.support-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-link {
    display: inline-block;
    background: linear-gradient(45deg, #ff3030, #3098ff);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    margin-right: 0.5rem;
    position: relative;
    overflow: hidden;
}

.support-link::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 ease;
}

.support-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 48, 48, 0.3);
}

.support-link:hover::before {
    left: 100%;
}

.support-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

/* Responsive design for TintTap */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .header-download-badges {
        order: -1;
        margin-bottom: 0.5rem;
    }

    .header-download-btn img {
        width: 100px;
        height: auto;
    }

    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-download-buttons {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0 1rem 0;
    }

    .hero-download-btn img {
        max-width: 140px;
        height: auto;
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .download-stats {
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .download-buttons {
        align-items: center;
    }

    .download-btn img {
        max-width: 180px;
        height: auto;
    }

    .gameplay-steps {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tinttap-icon-large {
        width: 80px;
        height: 80px;
    }

    .tinttap-icon-large .circle {
        width: 25px;
        height: 25px;
    }

    .hero {
        min-height: 60vh;
        padding: 1.5rem 0;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-download-buttons {
        margin: 1.5rem 0 1rem 0;
    }

    .hero-download-btn img {
        max-width: 120px;
        height: auto;
    }

    .phone-mockup {
        width: 150px;
        height: 260px;
        padding: 15px;
    }

    .step, .feature-card, .support-item {
        padding: 1.5rem;
    }

    body::before {
        background-size: 200px 100px;
    }
}