/* ========================================
   Infinity Growth Evolution - TikTok MCN
   Black + Tech Theme with TikTok Colors
   ======================================== */

:root {
    --color-bg: #000000;
    --color-bg-light: #0a0a0a;
    --color-bg-card: #111111;
    /* Primary TikTok Brand Colors */
    --color-pink: #ff0050;
    --color-pink-light: #ff1a66;
    --color-cyan: #00f2ea;
    --color-cyan-light: #1affed;
    --color-white: #ffffff;
    --color-gray: #888888;
    --color-gray-light: #cccccc;
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00f2ea 0%, #ff0050 100%);
    --gradient-cyan: linear-gradient(135deg, #00f2ea 0%, #00c4bd 100%);
    --gradient-pink: linear-gradient(135deg, #ff0050 0%, #d40043 100%);
    /* Neon Effects */
    --neon-cyan: 0 0 10px #00f2ea, 0 0 20px #00f2ea, 0 0 40px #00f2ea;
    --neon-pink: 0 0 10px #ff0050, 0 0 20px #ff0050, 0 0 40px #ff0050;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--color-cyan);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-pink {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 242, 234, 0.3);
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 242, 234, 0.5), 0 8px 30px rgba(255, 0, 80, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-bg);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
}

/* Border Colors */
.border-hover {
    border-color: rgba(0, 242, 234, 0.3);
}

/* Shadow Glow */
.shadow-glow {
    box-shadow: 0 0 40px rgba(0, 242, 234, 0.3);
}

/* Section Titles */
.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    color: var(--color-gray);
    font-size: 16px;
    margin-bottom: 50px;
}

.section-subtitle.center {
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 242, 234, 0.1);
    box-shadow: 0 4px 30px rgba(0, 242, 234, 0.05);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-pink);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 13px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Tech Grid Background */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 242, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 234, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.light-beam {
    position: absolute;
    width: 300px;
    height: 120%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 234, 0.15), rgba(255, 0, 80, 0.1), transparent);
    transform: rotate(-25deg);
    filter: blur(20px);
}

/* Neon Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-cyan);
    border-radius: 50%;
    box-shadow: var(--neon-cyan);
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 1s; background: var(--color-pink); box-shadow: var(--neon-pink); }
.particle:nth-child(3) { left: 35%; top: 40%; animation-delay: 2s; }
.particle:nth-child(4) { left: 50%; top: 70%; animation-delay: 3s; background: var(--color-pink); box-shadow: var(--neon-pink); }
.particle:nth-child(5) { left: 65%; top: 30%; animation-delay: 4s; }
.particle:nth-child(6) { left: 80%; top: 60%; animation-delay: 5s; background: var(--color-pink); box-shadow: var(--neon-pink); }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Neon Border Animation */
.neon-border {
    position: relative;
    overflow: hidden;
}

.neon-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00f2ea, #ff0050, #00f2ea, #ff0050);
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    animation: neonBorder 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neon-border:hover::before {
    opacity: 1;
}

@keyframes neonBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.beam-1 {
    left: -10%;
    top: -10%;
    animation: beamMove 8s ease-in-out infinite;
}

.beam-2 {
    left: 20%;
    top: -5%;
    animation: beamMove 10s ease-in-out infinite 1s;
}

.beam-3 {
    left: 45%;
    top: -15%;
    animation: beamMove 9s ease-in-out infinite 2s;
}

.beam-4 {
    left: 70%;
    top: -10%;
    animation: beamMove 11s ease-in-out infinite 3s;
}

@keyframes beamMove {
    0%, 100% { transform: rotate(-25deg) translateX(0); opacity: 0.3; }
    50% { transform: rotate(-25deg) translateX(30px); opacity: 0.6; }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(0, 242, 234, 0.3);
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(90deg, #00f2ea, #ff0050);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 242, 234, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 0, 80, 0.5)); }
}

.hero-desc {
    font-size: 16px;
    color: var(--color-gray-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 242, 234, 0.2);
    border: 2px solid rgba(0, 242, 234, 0.3);
    animation: imageFloat 4s ease-in-out infinite;
}

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

/* Tech Corner Decoration */
.tech-corners {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.tech-corners::before,
.tech-corners::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-cyan);
}

.tech-corners::before {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.tech-corners::after {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.location-desc {
    color: var(--color-gray-light);
    margin-bottom: 40px;
}

.location-features .feature {
    margin-bottom: 30px;
}

.location-features h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.location-features p {
    color: var(--color-gray);
    font-size: 15px;
}

.location-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.location-bottom {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.location-bottom .section-title {
    margin-bottom: 20px;
}

.center-desc {
    color: var(--color-gray);
    font-size: 15px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--color-bg-card);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 105, 180, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 234, 0.5);
    box-shadow: 0 20px 50px rgba(0, 242, 234, 0.2), 0 0 30px rgba(0, 242, 234, 0.1);
}

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 0, 80, 0.3);
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px dashed rgba(255, 0, 80, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    color: var(--color-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.stats-box {
    background: var(--color-bg-card);
    border-radius: 24px;
    padding: 50px;
    margin: 50px 0;
    text-align: center;
    border: 1px solid rgba(255, 105, 180, 0.1);
}

.stats-title {
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 8px;
    background: linear-gradient(90deg, #00f2ea, #ff0050);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.stat-label {
    color: var(--color-gray);
    font-size: 14px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.team-card {
    background: var(--color-bg-card);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 242, 234, 0.1);
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00f2ea, #ff0050);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 234, 0.4);
    box-shadow: 0 15px 40px rgba(0, 242, 234, 0.15);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.3);
    position: relative;
}

.team-avatar::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px dashed var(--color-cyan);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 600;
}

.team-role {
    display: block;
    color: var(--color-cyan);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--color-gray);
    font-size: 13px;
    line-height: 1.6;
}

/* Awards Section */
.awards-section {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.award-item {
    margin-bottom: 40px;
}

.award-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.award-item p {
    color: var(--color-gray);
    font-size: 14px;
}

.ranking-card {
    background: var(--color-bg-card);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 105, 180, 0.1);
}

.ranking-card h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 8px;
}

.ranking-period {
    text-align: center;
    color: var(--color-gray);
    font-size: 13px;
    margin-bottom: 30px;
}

.ranking-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.rank-item {
    background: rgba(0, 242, 234, 0.05);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.rank-num {
    display: block;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.rank-cat {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.rank-sub {
    display: block;
    font-size: 12px;
    color: var(--color-gray);
}

.official-awards {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 105, 180, 0.1);
}

.official-awards h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.award-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.award-badge {
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
}

.additional-recognition {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 105, 180, 0.1);
}

.additional-recognition .small {
    font-size: 12px;
    color: var(--color-gray);
    margin-bottom: 4px;
}

.highlight-text {
    color: var(--color-pink);
    font-weight: 600;
}

/* Brands Section */
.brands-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.brand-item {
    background: var(--color-bg-card);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-white);
    border: 1px solid rgba(0, 242, 234, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    position: relative;
    overflow: hidden;
}

.brand-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9) saturate(1);
    transition: var(--transition);
}

.brand-item:hover img {
    filter: brightness(1.1) saturate(1.1);
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 242, 234, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.brand-item:hover::before {
    width: 200px;
    height: 200px;
}

.brand-item:hover {
    border-color: rgba(0, 242, 234, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 242, 234, 0.15);
}

/* CTA Section */
.cta-section {
    padding: 60px 0 100px;
    background: var(--color-bg);
}

.cta-box {
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.1) 0%, rgba(255, 0, 80, 0.1) 100%);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(0, 242, 234, 0.2);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

/* TikTok Brand Colors */
.tiktok-cyan {
    color: var(--color-tiktok-cyan) !important;
}

.tiktok-pink {
    color: var(--color-tiktok-pink) !important;
}

.tiktok-highlight {
    background: linear-gradient(90deg, var(--color-tiktok-cyan) 0%, var(--color-tiktok-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-tiktok {
    background: linear-gradient(90deg, var(--color-cyan) 0%, var(--color-pink) 100%);
    color: var(--color-white);
    font-weight: 700;
}

.btn-tiktok:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 242, 234, 0.3), 0 8px 30px rgba(255, 0, 80, 0.3);
}

.tiktok-gradient {
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.1) 0%, rgba(255, 0, 80, 0.1) 100%) !important;
    border: 1px solid rgba(0, 242, 234, 0.2) !important;
}

/* TikTok Section */
.tiktok-section {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.tiktok-header i {
    font-size: 48px;
    background: linear-gradient(90deg, var(--color-cyan) 0%, var(--color-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 15px;
}

.tiktok-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 60px 0;
}

.tiktok-card {
    background: var(--color-bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tiktok-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.03), transparent 30%);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.tiktok-card.cyan {
    border-color: rgba(0, 242, 234, 0.2);
}

.tiktok-card.cyan i {
    color: var(--color-cyan);
}

.tiktok-card.pink {
    border-color: rgba(255, 0, 80, 0.2);
}

.tiktok-card.pink i {
    color: var(--color-pink);
}

.tiktok-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tiktok-card.cyan:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 10px 40px rgba(0, 242, 234, 0.2), 0 0 20px rgba(0, 242, 234, 0.1);
}

.tiktok-card.pink:hover {
    border-color: var(--color-pink);
    box-shadow: 0 10px 40px rgba(255, 0, 80, 0.2), 0 0 20px rgba(255, 0, 80, 0.1);
}

.tiktok-card i {
    font-size: 40px;
    margin-bottom: 20px;
}

.tiktok-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.tiktok-card p {
    color: var(--color-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* TikTok Color Demo */
.tiktok-colors-demo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

/* Scan Line Effect */
.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    opacity: 0.3;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch:hover {
    animation: glitch 0.3s ease-in-out;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.color-block {
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.color-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.color-block:hover::after {
    left: 100%;
}

.color-block:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.color-block span {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

.color-block small {
    font-size: 12px;
    opacity: 0.8;
}

.color-block.cyan {
    background: var(--color-cyan);
    color: var(--color-bg);
}

.color-block.pink {
    background: var(--color-pink);
    color: var(--color-white);
}

.color-block.black {
    background: var(--color-tiktok-black);
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.1);
}

.color-block.white {
    background: var(--color-white);
    color: var(--color-bg);
}

/* Footer */
.footer {
    background: var(--color-bg-light);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0, 242, 234, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--color-gray);
    font-size: 14px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 242, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-cyan);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-pink);
}

.footer-links li {
    color: var(--color-gray);
    font-size: 14px;
}

.footer-links i {
    margin-right: 8px;
    color: var(--color-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 105, 180, 0.1);
}

.footer-bottom p {
    color: var(--color-gray);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tiktok-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tiktok-colors-demo {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .ranking-numbers {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-box {
        padding: 40px 30px;
    }
    
    .cta-box h2 {
        font-size: 28px;
    }
    
    .tiktok-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tiktok-colors-demo {
        grid-template-columns: repeat(2, 1fr);
    }
}
