/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #0a0a0a url('girl.jpeg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #00d4ff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 10rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 3rem;
    line-height: 1.1;
    text-shadow: 3px 3px 0px #000, 6px 6px 0px #4a90e2;
    letter-spacing: -2px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    animation: fadeInUp 1.2s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.3s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
}

.scroll-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #000;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 2px solid #4a90e2;
}

.scroll-arrow {
    color: #4a90e2;
    animation: bounce 2s infinite;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-radius: 50%;
    border: 2px solid #4a90e2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/* Floating Shapes */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #4a90e2, #357abd, #2c5aa0, #1e3a8a);
    background-size: 200% 200%;
    animation: float 15s infinite linear, colorShift 8s ease infinite;
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.6);
}

@keyframes colorShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.shape-2 {
    width: 180px;
    height: 180px;
    top: 55%;
    right: 10%;
    animation-delay: -3s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 15%;
    animation-delay: -6s;
}

.shape-4 {
    width: 140px;
    height: 140px;
    top: 25%;
    right: 25%;
    animation-delay: -9s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-30px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translateY(-15px) rotate(240deg) scale(0.9);
    }
    100% {
        transform: translateY(0px) rotate(360deg) scale(1);
    }
}

/* Section Styles */
section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 0px #000;
}

.title-underline {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #4a90e2, #357abd, #2c5aa0);
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.5);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-paragraph {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.about-links {
    margin-top: 2rem;
}

.about-links h4 {
    color: #4a90e2;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.about-links a {
    display: block;
    color: #4a90e2;
    text-decoration: none;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.about-links a:hover {
    background: rgba(74, 144, 226, 0.2);
    border-color: #4a90e2;
    transform: translateX(10px);
}

.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
    animation: fly3D 6s ease-in-out infinite;
}

@keyframes fly3D {
    0%, 100% {
        transform: translateY(0px) rotateY(20deg) rotateX(15deg);
    }
    25% {
        transform: translateY(-30px) rotateY(25deg) rotateX(20deg);
    }
    50% {
        transform: translateY(-15px) rotateY(15deg) rotateX(10deg);
    }
    75% {
        transform: translateY(-40px) rotateY(30deg) rotateX(25deg);
    }
}

.card-content {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(53, 122, 189, 0.1));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    transform: rotateY(20deg) rotateX(15deg);
    transition: all 0.5s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-content:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(74, 144, 226, 0.3);
    animation-play-state: paused;
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.card-content h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.card-content p {
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Illegal Activity Section */
.illegal {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #16213e 100%);
    background-size: 200% 200%;
    animation: gradientShift 18s ease infinite;
}

.illegal-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.illegal-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #4a90e2, #357abd, #2c5aa0, #1e3a8a);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #4a90e2, #357abd);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.8);
    border: 3px solid #fff;
}

.timeline-content {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 20px;
    padding: 2rem;
    width: 45%;
    margin: 0 2.5%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.05);
    border-color: #4a90e2;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.timeline-content h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.timeline-content p {
    color: #fff;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 1.2rem;
    font-weight: 400;
}

/* Casino Analysis Section */
.casino-analysis {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #533483 100%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
    position: relative;
    overflow: hidden;
}

.casino-analysis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.casino-content {
    position: relative;
    z-index: 2;
}

.casino-header {
    text-align: center;
    margin-bottom: 4rem;
}

.casino-title {
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 0px #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.casino-title i {
    color: #4a90e2;
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.6));
}

.casino-subtitle {
    font-size: 1.5rem;
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.casino-info {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.casino-info h3 {
    color: #4a90e2;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    text-align: center;
}

.casino-info p {
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    text-align: justify;
}

/* Structured info blocks */
.info-block {
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.info-block:hover {
    background: rgba(74, 144, 226, 0.1);
    border-color: rgba(74, 144, 226, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.2);
}

.info-block h4 {
    color: #4a90e2;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    border-bottom: 2px solid rgba(74, 144, 226, 0.3);
    padding-bottom: 0.5rem;
}

.info-block p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    text-align: left;
}

/* Contact and status within info block */
.contact-status {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
}

.contact-item, .status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover, .status-item:hover {
    background: rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.4);
    transform: translateX(5px);
}

.contact-label, .status-label {
    color: #4a90e2;
    font-weight: 600;
    font-size: 1rem;
    min-width: 120px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.8);
}

.contact-link i {
    font-size: 1.1rem;
}

.status-text {
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Damage items */
.damage-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.damage-item:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.4);
    transform: translateX(5px);
}

.damage-item.total {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
    font-weight: 700;
    font-size: 1.1rem;
}

.damage-label {
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.damage-amount {
    color: #ff4444;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Financial items */
.financial-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.financial-item:hover {
    background: rgba(255, 165, 0, 0.15);
    border-color: rgba(255, 165, 0, 0.4);
    transform: translateX(5px);
}

.financial-label {
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.financial-amount {
    color: #ffa500;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.financial-note {
    color: #ffa500;
    font-style: italic;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

/* Publication items */
.publication-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.publication-item:hover {
    background: rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.4);
    transform: translateX(5px);
}

.publication-label {
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.publication-link {
    color: #8a2be2;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.publication-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.8);
}

/* Account items */
.account-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.account-item:hover {
    background: rgba(0, 255, 127, 0.15);
    border-color: rgba(0, 255, 127, 0.4);
    transform: translateX(5px);
}

.account-label {
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.account-link {
    color: #00ff7f;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.account-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.8);
}

/* Social items */
.social-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.social-item:hover {
    background: rgba(255, 20, 147, 0.15);
    border-color: rgba(255, 20, 147, 0.4);
    transform: translateX(5px);
}

.social-label {
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.social-link {
    color: #ff1493;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.8);
}

/* Business items */
.business-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.business-item:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(5px);
}

.business-label {
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.business-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.business-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Casino Scam Analysis Section */
.casino-scam {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #533483 100%);
    background-size: 200% 200%;
    animation: gradientShift 25s ease infinite;
    position: relative;
    overflow: hidden;
}

.casino-scam::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.casino-scam-content {
    position: relative;
    z-index: 2;
}

.casino-scam-header {
    text-align: center;
    margin-bottom: 4rem;
}

.casino-scam-title {
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 0px #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.casino-scam-title i {
    color: #4a90e2;
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.6));
    animation: pulse 2s infinite;
}

.casino-scam-subtitle {
    font-size: 1.8rem;
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(74, 144, 226, 0.1);
    padding: 1rem 2rem;
    border-radius: 25px;
    border: 2px solid rgba(74, 144, 226, 0.3);
}

.scam-info {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.scam-block {
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.scam-block:hover {
    background: rgba(74, 144, 226, 0.1);
    border-color: rgba(74, 144, 226, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.2);
}

.scam-block h3 {
    color: #4a90e2;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    border-bottom: 2px solid rgba(74, 144, 226, 0.3);
    padding-bottom: 0.5rem;
}

.scam-block h4 {
    color: #4a90e2;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.scam-block p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Partner items */
.partner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.partner-item:hover {
    background: rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.4);
    transform: translateX(5px);
}

.partner-label {
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    min-width: 120px;
}

.partner-name {
    color: #4a90e2;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.rtp-info {
    color: #4a90e2;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Proof sections */
.proof-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.proof-section h5 {
    color: #4a90e2;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    text-align: center;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    text-align: center;
}

.proof-label {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.proof-image {
    max-width: 100%;
    height: auto;
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.proof-image:hover {
    transform: scale(1.02);
    border-color: rgba(74, 144, 226, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.proof-description {
    color: #4a90e2;
    font-style: italic;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Warning block */
.scam-block.warning {
    background: rgba(74, 144, 226, 0.1);
    border-color: rgba(74, 144, 226, 0.4);
    border-width: 2px;
}

.scam-block.warning h4 {
    color: #4a90e2;
    font-size: 1.8rem;
}

.scam-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.scam-list li {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    border-left: 4px solid #4a90e2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.scam-list li:hover {
    background: rgba(74, 144, 226, 0.15);
    transform: translateX(5px);
}

.scam-list li::before {
    content: '⚠️';
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.casino-highlight {
    background: rgba(74, 144, 226, 0.1);
    border-left: 4px solid #4a90e2;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 15px 15px 0;
}

.casino-highlight p {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.casino-contacts {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.casino-contacts h4 {
    color: #ff4444;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.casino-contacts a {
    display: inline-block;
    color: #ff4444;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid #ff4444;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 0, 0, 0.1);
    margin: 0.5rem;
}

.casino-contacts a:hover {
    background: #ff4444;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
}

.casino-status {
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.casino-status h4 {
    color: #ffa500;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.casino-status p {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f1419 100%);
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #357abd, #2c5aa0, #1e3a8a);
}

.footer-text p {
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .illegal-timeline::before {
        left: 25px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-dot {
        left: 25px;
        transform: none;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: clamp(3rem, 8vw, 5rem);
    }
    
    .section-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 5rem 0;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
    
    .section-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .about-paragraph {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
}

/* Smooth scrolling and animations */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Parallax effect for shapes */
.parallax-shape {
    will-change: transform;
}

/* 3D card tilt effect */
[data-tilt] {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

/* Additional animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
    animation: slideInRight 1s ease forwards;
}

/* Glow effects */
.glow {
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
}

/* Pulse animation for important elements */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Projects Section */
.projects {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #533483 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

.project-category {
    margin-bottom: 5rem;
}

.category-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.category-title i {
    color: #4a90e2;
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.5));
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.2), transparent);
    transition: left 0.5s ease;
}

.project-card:hover::before {
    left: 100%;
}

.project-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: #4a90e2;
}

.project-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #4a90e2;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.project-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.project-card p {
    color: #fff;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
}

.bot-id {
    color: #4a90e2 !important;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid #4a90e2;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(74, 144, 226, 0.1);
    margin-top: auto;
}

.project-link:hover {
    background: #4a90e2;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.4);
}

.project-link i {
    font-size: 0.9rem;
}

/* Responsive adjustments for project categories */
@media (max-width: 768px) {
    .category-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .category-title i {
        font-size: 1.5rem;
    }
    
    .project-card {
        min-height: 280px;
    }
    
    /* Casino analysis responsive */
    .casino-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .casino-title i {
        font-size: 2rem;
    }
    
    .casino-subtitle {
        font-size: 1.3rem;
    }
    
    .casino-info {
        padding: 2rem;
    }
    
    .casino-info h3 {
        font-size: 1.8rem;
    }
    
    .casino-info p {
        font-size: 1.1rem;
    }
    
    /* Structured blocks responsive */
    .info-block {
        padding: 1.5rem;
    }
    
    .info-block h4 {
        font-size: 1.4rem;
    }
    
    .info-block p {
        font-size: 1rem;
    }
    
    .damage-item, .financial-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .damage-label, .financial-label {
        font-size: 0.9rem;
    }
    
    .damage-amount, .financial-amount {
        font-size: 1rem;
    }
    
    /* Contact and status responsive */
    .contact-item, .status-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-label, .status-label {
        min-width: auto;
        font-size: 0.9rem;
    }
    
    /* New items responsive */
    .publication-item, .account-item, .social-item, .business-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .publication-label, .account-label, .social-label, .business-label {
        font-size: 0.9rem;
    }
    
    .publication-link, .account-link, .social-link, .business-link {
        font-size: 0.9rem;
    }
    
    /* Casino scam responsive */
    .casino-scam-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .casino-scam-title i {
        font-size: 2rem;
    }
    
    .casino-scam-subtitle {
        font-size: 1.4rem;
        padding: 0.8rem 1.5rem;
    }
    
    .scam-info {
        padding: 2rem;
    }
    
    .scam-block {
        padding: 1.5rem;
    }
    
    .scam-block h3 {
        font-size: 1.6rem;
    }
    
    .scam-block h4 {
        font-size: 1.4rem;
    }
    
    .scam-block p {
        font-size: 1rem;
    }
    
    .partner-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .partner-label, .partner-name, .rtp-info {
        font-size: 0.9rem;
    }
    
    .proof-section {
        padding: 1.5rem;
    }
    
    .proof-section h5 {
        font-size: 1.2rem;
    }
    
    .proof-label {
        font-size: 1rem;
    }
    
    .proof-description {
        font-size: 1rem;
    }
    
    .scam-list li {
        font-size: 1rem;
    }
    
    .casino-highlight p {
        font-size: 1.2rem;
    }
    
    .casino-contacts h4 {
        font-size: 1.5rem;
    }
    
    .casino-contacts a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .casino-status h4 {
        font-size: 1.4rem;
    }
    
    /* Technical scam responsive */
    .technical-scam-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .technical-scam-title i {
        font-size: 2rem;
    }
    
    .technical-scam-subtitle {
        font-size: 1.4rem;
        padding: 0.8rem 1.5rem;
    }
    
    .technical-info {
        padding: 2rem;
    }
    
    .technical-block {
        padding: 1.5rem;
    }
    
    .technical-block h3 {
        font-size: 1.6rem;
    }
    
    .technical-block h4 {
        font-size: 1.4rem;
    }
    
    .technical-block p {
        font-size: 1rem;
    }
    
    .code-section {
        padding: 1.5rem;
    }
    
    .code-section h4 {
        font-size: 1.2rem;
    }
    
    .code-block {
        padding: 1rem;
    }
    
    .code-block pre {
        font-size: 0.8rem;
    }
    
    .code-explanation {
        padding: 1.5rem;
    }
    
    .code-explanation h4 {
        font-size: 1.2rem;
    }
    
    .explanation-list li {
        font-size: 1rem;
    }
    
    .technical-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .casino-info {
        padding: 1.5rem;
    }
    
    .casino-info h3 {
        font-size: 1.6rem;
    }
    
    .casino-info p {
        font-size: 1rem;
    }
    
    .casino-highlight p {
        font-size: 1.1rem;
    }
    
    .casino-contacts {
        padding: 1.5rem;
    }
    
    .casino-contacts h4 {
        font-size: 1.3rem;
    }
    
    .casino-contacts a {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    
    .casino-status {
        padding: 1.5rem;
    }
    
    .casino-status h4 {
        font-size: 1.2rem;
    }
    
    /* Technical scam mobile responsive */
    .technical-info {
        padding: 1.5rem;
    }
    
    .technical-block {
        padding: 1rem;
    }
    
    .technical-block h3 {
        font-size: 1.4rem;
    }
    
    .technical-block h4 {
        font-size: 1.2rem;
    }
    
    .technical-block p {
        font-size: 0.9rem;
    }
    
    .code-section {
        padding: 1rem;
    }
    
    .code-section h4 {
        font-size: 1.1rem;
    }
    
    .code-block {
        padding: 0.8rem;
    }
    
    .code-block pre {
        font-size: 0.7rem;
    }
    
    .code-explanation {
        padding: 1rem;
    }
    
    .code-explanation h4 {
        font-size: 1.1rem;
    }
    
    .explanation-list li {
        font-size: 0.9rem;
    }
    
    .technical-list li {
        font-size: 0.9rem;
    }
}

/* Technical Scam Details Section */
.technical-scam {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #533483 100%);
    background-size: 200% 200%;
    animation: gradientShift 22s ease infinite;
    position: relative;
    overflow: hidden;
}

/* Conclusion Section */
.conclusion {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #533483 100%);
    background-size: 200% 200%;
    animation: gradientShift 24s ease infinite;
    position: relative;
    overflow: hidden;
}

/* User Examples Styling */
.user-examples {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.user-example {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    transition: all 0.3s ease;
}

.user-example:hover {
    background: rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

.user-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.4;
}

.user-field strong {
    color: #4a90e2;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.conclusion-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.conclusion-header {
    text-align: center;
    margin-bottom: 3rem;
}

.conclusion-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.conclusion-title i {
    color: #4a90e2;
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.6));
    animation: pulse 2s infinite;
}

.conclusion-subtitle {
    font-size: 1.3rem;
    color: #4a90e2;
    background: rgba(74, 144, 226, 0.1);
    border: 2px solid rgba(74, 144, 226, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.conclusion-info {
    max-width: 1200px;
    margin: 0 auto;
}

.conclusion-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.conclusion-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(74, 144, 226, 0.4);
}

.conclusion-block h3 {
    color: #4a90e2;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.conclusion-block h4 {
    color: #4a90e2;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.conclusion-block p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.database-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.stat-item {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(74, 144, 226, 0.2);
    transform: scale(1.05);
}

.stat-label {
    display: block;
    color: #4a90e2;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-value {
    display: block;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

.database-schema {
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.schema-list {
    list-style: none;
    padding: 0;
}

.schema-list li {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 8px;
    border-left: 3px solid #4a90e2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.schema-list code {
    background: rgba(74, 144, 226, 0.2);
    color: #4a90e2;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.conclusion-block.warning {
    border-color: rgba(255, 193, 7, 0.4);
    background: rgba(255, 193, 7, 0.05);
}

.conclusion-block.warning h4 {
    color: #ffc107;
}

.conclusion-list {
    list-style: none;
    padding: 0;
}

.conclusion-list li {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.conclusion-list li:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateX(5px);
}

.conclusion-list li strong {
    color: #ffc107;
}

/* Responsive adjustments for conclusion section */
@media (max-width: 768px) {
    .conclusion-title {
        font-size: 2.5rem;
    }
    
    .conclusion-title i {
        font-size: 2rem;
    }
    
    .conclusion-subtitle {
        font-size: 1.1rem;
        padding: 0.6rem 1.5rem;
    }
    
    .conclusion-block {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .conclusion-block h3 {
        font-size: 1.5rem;
    }
    
    .conclusion-block h4 {
        font-size: 1.3rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .database-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .conclusion-content {
        padding: 2rem 0;
    }
    
    .conclusion-title {
        font-size: 2rem;
    }
    
    .conclusion-title i {
        font-size: 1.5rem;
    }
    
    .conclusion-subtitle {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .conclusion-block {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .conclusion-block h3 {
        font-size: 1.3rem;
    }
    
    .conclusion-block h4 {
        font-size: 1.1rem;
    }
    
    .conclusion-block p {
        font-size: 1rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
}

.technical-scam::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.technical-scam-content {
    position: relative;
    z-index: 2;
}

.technical-scam-header {
    text-align: center;
    margin-bottom: 4rem;
}

.technical-scam-title {
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 0px #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.technical-scam-title i {
    color: #4a90e2;
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.6));
    animation: pulse 2s infinite;
}

.technical-scam-subtitle {
    font-size: 1.8rem;
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(74, 144, 226, 0.1);
    padding: 1rem 2rem;
    border-radius: 25px;
    border: 2px solid rgba(74, 144, 226, 0.3);
}

.technical-info {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.technical-block {
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.technical-block:hover {
    background: rgba(74, 144, 226, 0.1);
    border-color: rgba(74, 144, 226, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.2);
}

.technical-block h3 {
    color: #4a90e2;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    border-bottom: 2px solid rgba(74, 144, 226, 0.3);
    padding-bottom: 0.5rem;
}

.technical-block h4 {
    color: #4a90e2;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.technical-block p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Code sections */
.code-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.code-section h4 {
    color: #4a90e2;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    text-align: center;
}

.code-block {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.code-block pre {
    margin: 0;
    color: #4a90e2;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    text-shadow: none;
}

.code-block code {
    color: inherit;
}

/* Code explanation */
.code-explanation {
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.code-explanation h4 {
    color: #4a90e2;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.explanation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.explanation-list li {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    border-left: 4px solid #4a90e2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.explanation-list li:hover {
    background: rgba(74, 144, 226, 0.15);
    transform: translateX(5px);
}

.explanation-list li strong {
    color: #4a90e2;
    font-weight: 700;
}

/* Technical list */
.technical-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.technical-list li {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    border-left: 4px solid #4a90e2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.technical-list li:hover {
    background: rgba(74, 144, 226, 0.15);
    transform: translateX(5px);
}

.technical-list li strong {
    color: #4a90e2;
    font-weight: 700;
}

/* Warning block for technical */
.technical-block.warning {
    background: rgba(74, 144, 226, 0.1);
    border-color: rgba(74, 144, 226, 0.4);
    border-width: 2px;
}

.technical-block.warning h4 {
    color: #4a90e2;
    font-size: 1.8rem;
}

/* User Examples Responsive */
@media (max-width: 768px) {
    .user-example {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .user-field {
        font-size: 0.9rem;
    }

    .user-field strong {
        font-size: 0.8rem;
    }
}

/* Special Styles for Veronika Information */
.veronika-info {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(138, 43, 226, 0.1));
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.veronika-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.veronika-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.2);
    border-color: rgba(255, 20, 147, 0.6);
}

.veronika-info h4 {
    color: #ff1493;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 20, 147, 0.4);
    position: relative;
    z-index: 2;
}

.veronika-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.veronika-info li {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 20, 147, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ff1493;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    position: relative;
}

.veronika-info li:hover {
    background: rgba(255, 20, 147, 0.2);
    transform: translateX(5px);
    border-left-color: #ff69b4;
}

.veronika-info li strong {
    color: #ff69b4;
    font-weight: 700;
    margin-right: 0.5rem;
}

.veronika-info a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.veronika-info a:hover {
    color: #ff69b4;
    border-bottom-color: #ff69b4;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.6);
}

/* Next Publication Styles */
.next-publication {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(74, 144, 226, 0.1));
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.next-publication::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.next-publication:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.6);
}

.next-publication h4 {
    color: #8a2be2;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
    position: relative;
    z-index: 2;
}

.next-publication ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.next-publication li {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 10px;
    border-left: 4px solid #8a2be2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.next-publication li:hover {
    background: rgba(138, 43, 226, 0.2);
    transform: translateX(5px);
    border-left-color: #9370db;
}

.next-publication li strong {
    color: #9370db;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Enhanced wallet-data styles for Veronika section */
.wallet-data.veronika-enhanced {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.05), rgba(138, 43, 226, 0.05));
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wallet-data.veronika-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.wallet-data.veronika-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.15);
    border-color: rgba(255, 20, 147, 0.4);
}

.wallet-data.veronika-enhanced h4 {
    color: #ff1493;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
    position: relative;
    z-index: 2;
}

.wallet-data.veronika-enhanced ul {
    position: relative;
    z-index: 2;
}

.wallet-data.veronika-enhanced li {
    background: rgba(255, 20, 147, 0.1);
    border-left: 3px solid #ff1493;
    transition: all 0.3s ease;
}

.wallet-data.veronika-enhanced li:hover {
    background: rgba(255, 20, 147, 0.15);
    transform: translateX(3px);
}

.wallet-data.veronika-enhanced li strong {
    color: #ff69b4;
}

/* Responsive styles for new sections */
@media (max-width: 768px) {
    .veronika-info, .next-publication, .wallet-data.veronika-enhanced {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .veronika-info h4, .next-publication h4, .wallet-data.veronika-enhanced h4 {
        font-size: 1.3rem;
    }
    
    .veronika-info li, .next-publication li, .wallet-data.veronika-enhanced li {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .veronika-info, .next-publication, .wallet-data.veronika-enhanced {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .veronika-info h4, .next-publication h4, .wallet-data.veronika-enhanced h4 {
        font-size: 1.2rem;
    }
    
    .veronika-info li, .next-publication li, .wallet-data.veronika-enhanced li {
        font-size: 0.9rem;
        padding: 0.7rem;
    }
}

/* Final Message Section */
.final-message {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.final-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(74,144,226,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.final-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4a90e2, #7bb3f0, #4a90e2);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.5);
}

.final-header h3 {
    font-size: 2.5rem;
    color: #7bb3f0;
    font-weight: 600;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(123, 179, 240, 0.5);
}

.final-info {
    margin-bottom: 4rem;
}

.final-info p {
    font-size: 1.3rem;
    color: #e0e6ed;
    margin-bottom: 2rem;
    font-weight: 500;
}

.next-release-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.next-release-list li {
    background: rgba(74, 144, 226, 0.15);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    color: #4a90e2;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.next-release-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.2), transparent);
    transition: left 0.5s ease;
}

.next-release-list li:hover::before {
    left: 100%;
}

.next-release-list li:hover {
    background: rgba(74, 144, 226, 0.25);
    border-color: rgba(74, 144, 226, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    color: #7bb3f0;
}

/* Teaser Section Styles */
.teaser-section {
    margin-top: 40px;
    padding: 30px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(74, 144, 226, 0.2);
    position: relative;
    overflow: hidden;
}

.teaser-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.teaser-content {
    position: relative;
    z-index: 2;
}

.teaser-content h4 {
    color: #4a90e2;
    font-size: 1.4em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
}

.teaser-content p {
    color: #e0e6ed;
    font-size: 1.1em;
    margin: 12px 0;
    text-align: center;
    line-height: 1.6;
    font-weight: 500;
}

.highlight-text {
    background: linear-gradient(135deg, #4a90e2, #7bb3f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(74, 144, 226, 0.4);
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #7bb3f0);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.teaser-content p:hover .highlight-text::after {
    transform: scaleX(1);
}

.mystery-text {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.2em;
    text-shadow: 0 2px 15px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
}

.teaser-final {
    margin-top: 20px !important;
    font-size: 1.2em !important;
    font-weight: 600 !important;
    color: #e0e6ed !important;
}

/* Teaser Section Animation */
.teaser-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.teaser-section.animate-in,
.teaser-section.active {
    opacity: 1;
    transform: translateY(0);
}

.teaser-content {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease 0.2s;
}

.teaser-content.animate-in,
.teaser-content.active {
    opacity: 1;
    transform: translateX(0);
}

.countdown-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(10px);
}

.countdown-title {
    font-size: 1.8rem;
    color: #e0e6ed;
    margin-bottom: 2rem;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.time-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #4a90e2;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.time-label {
    font-size: 1rem;
    color: #7bb3f0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.release-date {
    font-size: 1.5rem;
    color: #4a90e2;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.4);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 10px;
    padding: 1rem 2rem;
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
}

.final-quote {
    margin-top: 3rem;
}

.final-quote p {
    font-size: 2rem;
    color: #e0e6ed;
    font-weight: 600;
    font-style: italic;
    text-shadow: 0 0 20px rgba(224, 230, 237, 0.3);
    position: relative;
    padding: 2rem;
    border-left: 4px solid #4a90e2;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 0 15px 15px 0;
}

.final-quote p::before {
    content: '"';
    font-size: 4rem;
    color: #4a90e2;
    position: absolute;
    top: -1rem;
    left: -1rem;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
}

/* Final Message Responsive */
@media (max-width: 768px) {
    .final-header h2 {
        font-size: 2.5rem;
    }
    
    .final-header h3 {
        font-size: 1.8rem;
    }
    
    .next-release-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 80px;
    }
    
    .time-value {
        font-size: 2.5rem;
    }
    
    .time-label {
        font-size: 0.9rem;
    }
    
    .final-quote p {
        font-size: 1.5rem;
        padding: 1.5rem;
    }
    
    .teaser-section {
        margin-top: 30px;
        padding: 20px;
    }
    
    .teaser-content h4 {
        font-size: 1.2em;
        margin-bottom: 15px;
    }
    
    .teaser-content p {
        font-size: 1em;
        margin: 10px 0;
    }
    
    .mystery-text {
        font-size: 1.1em;
    }
    
    .teaser-final {
        font-size: 1.1em !important;
    }
}

/* Latest Update Section Styles */
.latest-update {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.latest-update::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(74, 144, 226, 0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.update-content {
    position: relative;
    z-index: 2;
}

.update-header {
    text-align: center;
    margin-bottom: 3rem;
}

.update-title {
    font-size: 3rem;
    color: #e0e6ed;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(224, 230, 237, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.update-title i {
    color: #ff6b6b;
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

.update-subtitle {
    font-size: 1.5rem;
    color: #ff6b6b;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

.update-body {
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.update-text p {
    font-size: 1.3rem;
    color: #e0e6ed;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(224, 230, 237, 0.3);
}

.wallet-data {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.wallet-data h4 {
    font-size: 1.4rem;
    color: #4a90e2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.4);
}

.wallet-data ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.wallet-data li {
    font-size: 1.1rem;
    color: #e0e6ed;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(74, 144, 226, 0.2);
    position: relative;
    padding-left: 2rem;
}

.wallet-data li:last-child {
    border-bottom: none;
}

.wallet-data li::before {
    content: '•';
    color: #4a90e2;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.download-section {
    text-align: center;
    margin-top: 2rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
    border: 2px solid rgba(74, 144, 226, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #357abd 0%, #4a90e2 100%);
}

.download-btn i {
    font-size: 1.2rem;
}

.file-info {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #8892b0;
    font-style: italic;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Latest Update Responsive */
@media (max-width: 768px) {
    .latest-update {
        padding: 2rem 0;
    }
    
    .update-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .update-title i {
        font-size: 2rem;
    }
    
    .update-subtitle {
        font-size: 1.2rem;
    }
    
    .update-body {
        padding: 2rem 1.5rem;
    }
    
    .update-text p {
        font-size: 1.1rem;
    }
    
    .wallet-data {
        padding: 1.5rem;
    }
    
    .wallet-data h4 {
        font-size: 1.2rem;
    }
    
    .wallet-data li {
        font-size: 1rem;
        padding: 0.6rem 0;
        padding-left: 1.5rem;
    }
    
    .download-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
