/* ===== TRUST WALLET - Tropical Paradise Theme 2026 ===== */

/* --- CSS Variables --- */
:root {
    --ocean: #0891b2;
    --ocean-deep: #0e7490;
    --ocean-light: #22d3ee;
    --ocean-glow: #06b6d4;
    --sand: #fbbf24;
    --sand-light: #fef3c7;
    --coral: #f472b6;
    --coral-deep: #ec4899;
    --sunset: #fb923c;
    --white-sand: #fefce8;
    --white: #ffffff;
    --dark: #164e63;
    --dark-soft: #155e75;
    --text: #0c4a6e;
    --text-light: #67e8f9;
    --neon-cyan: #00ffff;
    --neon-pink: #ff00ff;
    --neon-orange: #ff6b35;

    --gradient-ocean: linear-gradient(135deg, #0891b2 0%, #22d3ee 50%, #06b6d4 100%);
    --gradient-sunset: linear-gradient(135deg, #f472b6 0%, #fb923c 50%, #fbbf24 100%);
    --gradient-sky: linear-gradient(180deg, #0ea5e9 0%, #38bdf8 30%, #7dd3fc 60%, #bae6fd 100%);
    --gradient-tropical: linear-gradient(135deg, #0891b2 0%, #14b8a6 50%, #22d3ee 100%);
    --gradient-neon: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #ff6b35 100%);
    --gradient-aurora: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #ffd200 100%);
    --gradient-cyber: linear-gradient(135deg, #00f5d4 0%, #00bbf9 25%, #9b5de5 50%, #f15bb5 75%, #fee440 100%);

    --shadow-soft: 0 4px 20px rgba(8, 145, 178, 0.15);
    --shadow-medium: 0 8px 40px rgba(8, 145, 178, 0.2);
    --shadow-glow: 0 0 40px rgba(34, 211, 238, 0.3);
    --shadow-neon: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3), 0 0 60px rgba(0, 255, 255, 0.1);
    --shadow-neon-pink: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);

    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(8, 145, 178, 0.2);
}

/* --- 2026 Modern Animations --- */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.6), 0 0 60px rgba(0, 255, 255, 0.4); }
    50% { text-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 60px rgba(255, 107, 53, 0.8), 0 0 90px rgba(255, 107, 53, 0.5); }
}

@keyframes borderGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.5), 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 20px rgba(0, 255, 255, 0.1); }
    50% { box-shadow: 0 0 10px rgba(255, 107, 53, 0.6), 0 0 20px rgba(255, 107, 53, 0.4), inset 0 0 30px rgba(255, 107, 53, 0.1); }
}

@keyframes morphBlob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
    75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse3D {
    0%, 100% { transform: scale(1) translateZ(0); }
    50% { transform: scale(1.05) translateZ(20px); }
}

@keyframes oceanWave {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-2%) translateY(-5px); }
    50% { transform: translateX(-5%) translateY(0); }
    75% { transform: translateX(-2%) translateY(5px); }
    100% { transform: translateX(0) translateY(0); }
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white-sand);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    font-size: 1.1rem;
    color: var(--text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* --- Container --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Glassmorphism Card --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

/* --- 3D Tilt Card --- */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tilt-card-inner {
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header.scrolled .logo {
    color: var(--ocean);
    text-shadow: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-sunset);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-soft);
}

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

.nav-link {
    padding: 0.6rem 1.2rem;
    color: var(--white);
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header.scrolled .nav-link {
    color: var(--text);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-sunset);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px;
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link:hover {
    color: var(--coral);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header.scrolled .menu-toggle span {
    background: var(--ocean);
}

/* --- Hero Section 2026 --- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg,
        #0c1445 0%,
        #1a237e 15%,
        #0d47a1 30%,
        #0288d1 50%,
        #00bcd4 70%,
        #4dd0e1 85%,
        #80deea 100%
    );
    background-size: 100% 200%;
    animation: gradientShift 15s ease infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Parallax Layers */
.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

/* Animated Sun with Glow */
.parallax-sun {
    position: absolute;
    top: 8%;
    right: 12%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle,
        #fff9c4 0%,
        #ffee58 20%,
        #ffca28 40%,
        #ff9800 60%,
        #ff5722 80%,
        transparent 100%
    );
    border-radius: 50%;
    filter: blur(3px);
    animation: sunPulse 6s ease-in-out infinite, sunGlow 4s ease-in-out infinite;
    box-shadow:
        0 0 60px rgba(255, 193, 7, 0.8),
        0 0 120px rgba(255, 152, 0, 0.6),
        0 0 180px rgba(255, 87, 34, 0.4),
        0 0 240px rgba(255, 87, 34, 0.2);
}

.parallax-sun::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    animation: sunRays 8s linear infinite;
}

@keyframes sunPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes sunGlow {
    0%, 100% { opacity: 0.95; filter: blur(3px) brightness(1); }
    50% { opacity: 1; filter: blur(2px) brightness(1.2); }
}

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

/* Palm Trees */
.palm {
    position: absolute;
    bottom: 0;
    width: auto;
    height: 60vh;
    z-index: 3;
}

.palm-left {
    left: -5%;
    transform: scaleX(-1);
    animation: palmSway 6s ease-in-out infinite;
}

.palm-right {
    right: -5%;
    animation: palmSway 5s ease-in-out infinite reverse;
}

@keyframes palmSway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.palm-right {
    animation-name: palmSwayRight;
}

@keyframes palmSwayRight {
    0%, 100% { transform: rotate(2deg); }
    50% { transform: rotate(-2deg); }
}

/* Animated Ocean Waves - 2026 Ultra Edition */
.waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    z-index: 5;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400%;
    height: 100%;
    background-repeat: repeat-x;
    transform-origin: center bottom;
}

/* Deep Ocean Layer - Darkest */
.wave-1 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23064e63'/%3E%3Cstop offset='50%25' style='stop-color:%230891b2'/%3E%3Cstop offset='100%25' style='stop-color:%23064e63'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23g1)' d='M0,96L30,112C60,128,120,160,180,165.3C240,171,300,149,360,149.3C420,149,480,171,540,197.3C600,224,660,256,720,250.7C780,245,840,203,900,181.3C960,160,1020,160,1080,176C1140,192,1200,224,1260,218.7C1320,213,1380,171,1410,149.3L1440,128L1440,320L1410,320C1380,320,1320,320,1260,320C1200,320,1140,320,1080,320C1020,320,960,320,900,320C840,320,780,320,720,320C660,320,600,320,540,320C480,320,420,320,360,320C300,320,240,320,180,320C120,320,60,320,30,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 320px;
    animation: waveDeep 20s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    bottom: 100px;
    opacity: 0.9;
    filter: brightness(0.8);
}

/* Mid Ocean - Teal */
.wave-2 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cdefs%3E%3ClinearGradient id='g2' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%230891b2'/%3E%3Cstop offset='50%25' style='stop-color:%2314b8a6'/%3E%3Cstop offset='100%25' style='stop-color:%230891b2'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23g2)' d='M0,192L40,186.7C80,181,160,171,240,181.3C320,192,400,224,480,218.7C560,213,640,171,720,165.3C800,160,880,192,960,213.3C1040,235,1120,245,1200,234.7C1280,224,1360,192,1400,176L1440,160L1440,320L1400,320C1360,320,1280,320,1200,320C1120,320,1040,320,960,320C880,320,800,320,720,320C640,320,560,320,480,320C400,320,320,320,240,320C160,320,80,320,40,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 280px;
    animation: waveMid 15s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    bottom: 70px;
    opacity: 0.85;
}

/* Cyan Wave */
.wave-3 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cdefs%3E%3ClinearGradient id='g3' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%2322d3ee'/%3E%3Cstop offset='50%25' style='stop-color:%2306b6d4'/%3E%3Cstop offset='100%25' style='stop-color:%2322d3ee'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23g3)' d='M0,128L48,144C96,160,192,192,288,197.3C384,203,480,181,576,165.3C672,149,768,139,864,154.7C960,171,1056,213,1152,213.3C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 240px;
    animation: waveCyan 12s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite reverse;
    bottom: 40px;
    opacity: 0.75;
}

/* Light Wave with Shimmer */
.wave-4 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cdefs%3E%3ClinearGradient id='g4' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%2367e8f9'/%3E%3Cstop offset='25%25' style='stop-color:%23a5f3fc'/%3E%3Cstop offset='50%25' style='stop-color:%2367e8f9'/%3E%3Cstop offset='75%25' style='stop-color:%23a5f3fc'/%3E%3Cstop offset='100%25' style='stop-color:%2367e8f9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23g4)' d='M0,224L60,213.3C120,203,240,181,360,186.7C480,192,600,224,720,234.7C840,245,960,235,1080,213.3C1200,192,1320,160,1380,144L1440,128L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 200px;
    animation: waveLight 9s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    bottom: 15px;
    opacity: 0.7;
}

/* Foam/Shore Wave - Brightest */
.wave-5 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cdefs%3E%3ClinearGradient id='g5' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23e0f7fa'/%3E%3Cstop offset='50%25' style='stop-color:%23fefce8'/%3E%3Cstop offset='100%25' style='stop-color:%23e0f7fa'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23g5)' d='M0,256L48,240C96,224,192,192,288,181.3C384,171,480,181,576,197.3C672,213,768,235,864,229.3C960,224,1056,192,1152,181.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 180px;
    animation: waveFoam 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    bottom: 0;
}

/* Foam Sparkle Effect */
.wave-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.4) 75%,
        transparent 100%
    );
    animation: shimmer 4s linear infinite;
}

@keyframes waveDeep {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-25%) translateY(-8px); }
    100% { transform: translateX(-50%) translateY(0); }
}

@keyframes waveMid {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-25%) translateY(-12px); }
    100% { transform: translateX(-50%) translateY(0); }
}

@keyframes waveCyan {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-25%) translateY(-10px); }
    100% { transform: translateX(-50%) translateY(0); }
}

@keyframes waveLight {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-25%) translateY(-6px); }
    100% { transform: translateX(-50%) translateY(0); }
}

@keyframes waveFoam {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-25%) translateY(-4px); }
    100% { transform: translateX(-50%) translateY(0); }
}

/* Palm Trees */
.palm-tree {
    position: absolute;
    bottom: 0;
    z-index: 4;
    pointer-events: none;
}

.palm-tree svg {
    height: 100%;
    width: auto;
}

.palm-1 {
    left: -2%;
    height: 70vh;
    animation: palmSway 7s ease-in-out infinite;
    transform-origin: bottom center;
}

.palm-2 {
    right: -2%;
    height: 65vh;
    animation: palmSwayReverse 6s ease-in-out infinite;
    transform-origin: bottom center;
}

.palm-3 {
    left: 8%;
    height: 45vh;
    animation: palmSway 8s ease-in-out infinite 0.5s;
    transform-origin: bottom center;
    opacity: 0.7;
}

.palm-4 {
    right: 8%;
    height: 50vh;
    animation: palmSwayReverse 7s ease-in-out infinite 0.3s;
    transform-origin: bottom center;
    opacity: 0.7;
}

.palm-5 {
    left: 15%;
    height: 30vh;
    animation: palmSway 6s ease-in-out infinite 1s;
    transform-origin: bottom center;
    opacity: 0.5;
}

.palm-6 {
    right: 15%;
    height: 35vh;
    animation: palmSwayReverse 5s ease-in-out infinite 0.7s;
    transform-origin: bottom center;
    opacity: 0.5;
}

@keyframes palmSway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

@keyframes palmSwayReverse {
    0%, 100% { transform: rotate(2deg); }
    50% { transform: rotate(-2deg); }
}

/* Coconuts falling animation */
.coconut {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: coconutFall 15s linear infinite;
}

@keyframes coconutFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(0.5);
        opacity: 0;
    }
}

/* Hero Content - 2026 Stunning Edition */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 1s ease, borderGlow 4s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 62px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.5), rgba(255, 107, 53, 0.5), rgba(255, 0, 255, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
}

.hero-title {
    color: var(--white);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both, textGlow 4s ease-in-out infinite 1s;
    text-shadow:
        0 0 30px rgba(255, 255, 255, 0.5),
        0 0 60px rgba(0, 255, 255, 0.3),
        0 4px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg,
        #ffd700 0%,
        #ff6b35 25%,
        #ff00ff 50%,
        #00ffff 75%,
        #ffd700 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5));
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--white);
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--neon-cyan);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

/* Buttons - 2026 Neon Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.15rem 2.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff00ff 50%, #00ffff 100%);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow:
        0 10px 40px rgba(255, 107, 53, 0.4),
        0 0 20px rgba(255, 0, 255, 0.3),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2);
    animation: gradientShift 4s ease infinite;
}

.btn-primary:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow:
        0 20px 60px rgba(255, 107, 53, 0.5),
        0 0 40px rgba(255, 0, 255, 0.4),
        0 0 60px rgba(0, 255, 255, 0.3),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2);
}

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

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

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 23px;
    background: linear-gradient(135deg, #ff6b35, #ff00ff, #00ffff);
    z-index: -1;
    filter: blur(15px);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.btn-primary:hover::after {
    opacity: 0.8;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
    transform: translateY(-6px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 255, 0.3);
}

.btn-ocean {
    background: linear-gradient(135deg, #00ffff 0%, #0891b2 50%, #00ffff 100%);
    background-size: 200% 200%;
    color: var(--dark);
    font-weight: 800;
    box-shadow:
        0 10px 40px rgba(0, 255, 255, 0.4),
        inset 0 -3px 10px rgba(0, 0, 0, 0.1);
    animation: gradientShift 4s ease infinite;
}

.btn-ocean:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow:
        0 20px 60px rgba(0, 255, 255, 0.5),
        0 0 40px rgba(0, 255, 255, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1.75rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* --- Section Styles --- */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-ocean {
    background: var(--gradient-ocean);
    color: var(--white);
}

.section-light {
    background: var(--white-sand);
}

.section-gradient {
    background: linear-gradient(180deg, var(--white-sand) 0%, #e0f2fe 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-tropical);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-ocean .section-badge {
    background: rgba(255, 255, 255, 0.2);
}

.section-title {
    margin-bottom: 1rem;
}

.section-ocean .section-title {
    color: var(--white);
}

.section-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* --- Feature Cards Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-sunset);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-tropical);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.3);
}

.feature-card:nth-child(2) .feature-icon {
    background: var(--gradient-sunset);
    box-shadow: 0 10px 30px rgba(251, 146, 60, 0.3);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.feature-text {
    color: var(--text);
    line-height: 1.7;
}

/* --- Stats Section --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.section-ocean .stat-number {
    background: linear-gradient(135deg, var(--white) 0%, var(--sand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* --- Download Section --- */
.download-section {
    background: var(--gradient-tropical);
    position: relative;
    overflow: hidden;
}

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

.download-info h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.download-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.download-features {
    list-style: none;
    margin-bottom: 2rem;
}

.download-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.download-features li::before {
    content: '✓';
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.download-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1e1e1e 0%, #2d2d2d 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--gradient-sky);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.phone-screen-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.phone-screen-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--ocean-light);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-sunset);
    transform: translateY(-3px);
}

/* --- Page Hero (for inner pages) --- */
.page-hero {
    padding: 10rem 0 6rem;
    background: var(--gradient-sky);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23fefce8' fill-opacity='1' d='M0,256L48,240C96,224,192,192,288,181.3C384,171,480,181,576,197.3C672,213,768,235,864,229.3C960,224,1056,192,1152,181.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .download-features {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        color: var(--text);
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .menu-toggle {
        display: flex;
    }

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

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .phone-mockup {
        width: 220px;
        height: 440px;
    }
}

/* --- Additional Components --- */

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs span {
    opacity: 0.6;
}

/* Content Cards */
.content-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.content-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.content-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--gradient-tropical);
}

.content-card-body {
    padding: 2rem;
}

.content-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.content-card-text {
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* Price Cards */
.price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    color: var(--ocean);
    font-weight: 700;
}

.price-tag .currency {
    font-size: 1rem;
}

.price-tag .amount {
    font-size: 2rem;
}

.price-tag .period {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-sunset);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
}

.testimonial-name {
    font-weight: 600;
    color: var(--dark);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
}

/* FAQ */
.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(8, 145, 178, 0.05);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-tropical);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem;
    color: var(--text);
    line-height: 1.7;
}

/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(8, 145, 178, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ocean);
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1);
}

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

/* Info Boxes */
.info-box {
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.info-box-success {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
}

.info-box-warning {
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid var(--sand);
}

.info-box-info {
    background: rgba(8, 145, 178, 0.1);
    border-left: 4px solid var(--ocean);
}

/* Service Page Layout */
.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-tropical);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

@media (max-width: 968px) {
    .service-content {
        grid-template-columns: 1fr;
    }

    .service-content.reverse {
        direction: ltr;
    }
}

/* Floating Elements */
.floating {
    animation: floatingElement 6s ease-in-out infinite;
}

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

.floating-delay-1 { animation-delay: 0.5s; }
.floating-delay-2 { animation-delay: 1s; }
.floating-delay-3 { animation-delay: 1.5s; }

/* Decorative Elements */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.deco-circle-1 {
    width: 400px;
    height: 400px;
    background: var(--ocean);
    top: -200px;
    right: -100px;
}

.deco-circle-2 {
    width: 300px;
    height: 300px;
    background: var(--coral);
    bottom: -150px;
    left: -100px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
    transform: scale(1.1);
}

.trust-badge-icon {
    font-size: 2.5rem;
}

.trust-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* App Screenshot Gallery */
.screenshot-gallery {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}

.screenshot-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: scale(1.05);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}
