/* ========================================
   GLOBAL STYLES & VARIABLES
   ======================================== */

:root {
    --primary-color: #00d4ff;
    --secondary-color: #0066cc;
    --accent-color: #ff6b9d;
    --dark-bg: #0a0e27;
    --darker-bg: #050a15;
    --card-bg: #1a1f3a;
    --text-light: #e9ecef;
    --text-muted: #adb5bd;
    --border-color: #2d3748;
    --shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.logo:hover {
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: scale(1.05);
}

.logo i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    display: block;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin-top: 10px;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-content a:hover {
    color: var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle-label span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 14, 39, 0.98);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    #nav-toggle:checked ~ .nav-menu {
        max-height: 500px;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
    }

    .dropdown-content {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
    }

    #nav-toggle:checked ~ .nav-menu .dropdown:hover .dropdown-content {
        opacity: 0;
        visibility: hidden;
    }
}

/* ========================================
   HERO SECTION WITH SLIDESHOW
   ======================================== */

.hero {
    margin-top: 70px;
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.1);
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.15) 0%, 
        rgba(10, 14, 39, 0.6) 50%, 
        rgba(255, 107, 157, 0.15) 100%);
    z-index: 1;
}

/* Slide Navigation */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: var(--transition);
    border-radius: 3px;
    background: rgba(0, 212, 255, 0.3);
    border: 2px solid var(--primary-color);
    z-index: 10;
    user-select: none;
}

.next {
    right: 20px;
}

.prev {
    left: 20px;
}

.prev:hover, .next:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* Dots Indicator */
.dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary-color);
    border-color: white;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(0, 212, 255, 0.7);
    transform: scale(1.2);
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 40px;
}

.hero-text-wrapper {
    text-align: center;
    max-width: 700px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* ========================================
   SERVICE SECTIONS
   ======================================== */

section {
    padding: 100px 40px;
    min-height: auto;
    position: relative;
    z-index: 1;
}

.service-section {
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header h2 i {
    margin-right: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ========================================
   FORM & SEARCH
   ======================================== */

.form-container {
    margin-bottom: 50px;
}

.search-form {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.form-group {
    display: flex;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
}

.search-form input {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition);
}

.search-form input:focus {
    outline: none;
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.search-form input::placeholder {
    color: var(--text-muted);
}

/* ========================================
   RESULTS DISPLAY
   ======================================== */

.results-container {
    animation: fadeInUp 0.8s ease-out;
}

.results-container h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.result-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 157, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.result-card:nth-child(1) { animation-delay: 0s; }
.result-card:nth-child(2) { animation-delay: 0.1s; }
.result-card:nth-child(3) { animation-delay: 0.2s; }
.result-card:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.result-card:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 107, 157, 0.1));
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.result-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.result-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.result-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    word-break: break-all;
}

/* ========================================
   PLATFORM CARDS (Username Results)
   ======================================== */

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.status-badge.found {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.status-badge.not-found {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 157, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }

.feature-card:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 107, 157, 0.1));
    border-color: var(--primary-color);
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    animation: fadeInUp 0.8s ease-out;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.capability-list {
    list-style: none;
    margin: 20px 0;
}

.capability-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-light);
}

.capability-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.stat-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 157, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 157, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.contact-card:nth-child(1) { animation-delay: 0s; }
.contact-card:nth-child(2) { animation-delay: 0.1s; }
.contact-card:nth-child(3) { animation-delay: 0.2s; }

.contact-card:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 107, 157, 0.1));
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.contact-card p {
    color: var(--text-muted);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: rgba(5, 10, 21, 0.95);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding-top: 60px;
    color: var(--text-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    animation: fadeInUp 0.8s ease-out;
}

.footer-section h4,
.footer-section h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    padding-left: 10px;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    margin-bottom: 20px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    color: var(--text-muted);
    padding-bottom: 30px;
}

.footer-bottom p {
    font-size: 0.9rem;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.in-view {
    animation: slideInView 0.6s ease-out forwards;
}

@keyframes slideInView {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    section {
        padding: 80px 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form input {
        min-width: 100%;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .prev, .next {
        padding: 12px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-menu li {
        width: 100%;
    }

    .logo {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    section {
        padding: 40px 15px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .prev, .next {
        padding: 10px;
        font-size: 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* ========================================
   UTILITIES
   ======================================== */

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.5);
}

/* Loading animation for future use */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}
/* ========================================
   LOADING OVERLAY - HACKING EFFECT
   ======================================== */

.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 21, 0.98);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loading-overlay.active {
    display: flex;
    opacity: 1;
}

.loading-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hacking-display {
    position: relative;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(255, 107, 157, 0.05));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2), inset 0 0 20px rgba(0, 212, 255, 0.05);
    text-align: center;
    animation: glitchFrame 0.3s ease-in-out infinite;
}

.hacking-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 212, 255, 0.03),
        rgba(0, 212, 255, 0.03) 2px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
    border-radius: 15px;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.8), transparent);
    animation: scanMove 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.terminal-text {
    position: relative;
    z-index: 2;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-align: left;
    margin: 30px 0;
    min-height: 80px;
    line-height: 1.8;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.text-line {
    margin: 8px 0;
    animation: typeWriter 0.5s steps(30, end) ease-out;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
}

.text-line:nth-child(1) {
    animation-delay: 0.2s;
}

.text-line:nth-child(2) {
    animation-delay: 0.8s;
}

.text-line:nth-child(3) {
    animation-delay: 1.4s;
}

.text-line.cursor {
    animation: blink 0.7s steps(1) 2s infinite;
    animation-delay: 2s;
    color: var(--accent-color);
}

.loading-spinner {
    position: relative;
    z-index: 2;
    margin: 30px 0;
    font-size: 3rem;
    color: var(--primary-color);
    animation: spin 3s linear infinite, glow 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.loading-text {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 3px;
    animation: textFlash 1.5s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* ========================================
   HACKING EFFECT ANIMATIONS
   ======================================== */

@keyframes scanMove {
    0% {
        top: 0;
    }
    50% {
        top: 50%;
    }
    100% {
        top: 100%;
    }
}

@keyframes typeWriter {
    from {
        max-width: 0;
        opacity: 1;
    }
    to {
        max-width: 100%;
        opacity: 1;
    }
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.6), 0 0 40px rgba(0, 212, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.8), 0 0 60px rgba(0, 212, 255, 0.5);
    }
}

@keyframes textFlash {
    0%, 100% {
        opacity: 1;
        color: var(--primary-color);
    }
    50% {
        opacity: 0.6;
        color: var(--accent-color);
    }
}

@keyframes glitchFrame {
    0%, 100% {
        transform: translate(0);
    }
    25% {
        transform: translate(-2px, 2px);
    }
    50% {
        transform: translate(2px, -2px);
    }
    75% {
        transform: translate(-2px, -2px);
    }
}

/* ========================================
   TERMINAL OUTPUT STYLING
   ======================================== */

.terminal-output {
    margin-top: 40px;
    background: #000000;
    border: 2px solid #00d4ff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
    animation: slideInUp 0.5s ease-out;
    z-index: 5;
    position: relative;
}

.terminal-header {
    display: none;
}

.terminal-header span {
    animation: textFlash 2s ease-in-out infinite;
}

.close-terminal {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.close-terminal:hover {
    opacity: 1;
}

.terminal-content {
    padding: 25px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 2;
    height: auto;
    max-height: 500px;
    overflow-y: auto;
    background: #000000;
    color: #ffffff;
    position: relative;
    z-index: 10;
    border: none;
}

.terminal-line {
    margin: 8px 0;
    animation: none;
    opacity: 1;
    color: #ffffff;
    display: block;
    z-index: 10;
    position: relative;
}

.terminal-line:nth-child(1) { animation-delay: 0s; }
.terminal-line:nth-child(2) { animation-delay: 0.1s; }
.terminal-line:nth-child(3) { animation-delay: 0.2s; }
.terminal-line:nth-child(4) { animation-delay: 0.3s; }
.terminal-line:nth-child(5) { animation-delay: 0.4s; }
.terminal-line:nth-child(6) { animation-delay: 0.5s; }
.terminal-line:nth-child(7) { animation-delay: 0.6s; }
.terminal-line:nth-child(8) { animation-delay: 0.7s; }
.terminal-line:nth-child(9) { animation-delay: 0.8s; }
.terminal-line:nth-child(10) { animation-delay: 0.9s; }

.terminal-line.header {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 10px 0;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}

.terminal-line.error {
    color: #ff4444;
    font-weight: bold;
    text-shadow: 0 0 5px #ff4444;
}

.field-name {
    color: #ffffff;
    font-weight: 600;
    min-width: 150px;
    display: inline-block;
}

.field-value {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
    font-weight: 500;
}

/* Terminal scrollbar */
.terminal-content::-webkit-scrollbar {
    width: 8px;
}

.terminal-content::-webkit-scrollbar-track {
    background: rgba(0, 212, 255, 0.05);
}

.terminal-content::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.2);
    border-radius: 4px;
}

.terminal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.4);
}

/* Results Card Output */
.results-output {
    margin-top: 40px;
    background: rgba(26, 31, 58, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 30px;
    animation: slideInUp 0.5s ease-out;
}

.results-header {
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    padding-bottom: 15px;
}

.results-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.platform-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 157, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.platform-card:nth-child(1) { animation-delay: 0s; }
.platform-card:nth-child(2) { animation-delay: 0.1s; }
.platform-card:nth-child(3) { animation-delay: 0.2s; }
.platform-card:nth-child(4) { animation-delay: 0.3s; }
.platform-card:nth-child(5) { animation-delay: 0.4s; }
.platform-card:nth-child(6) { animation-delay: 0.5s; }
.platform-card:nth-child(7) { animation-delay: 0.6s; }
.platform-card:nth-child(8) { animation-delay: 0.7s; }

.platform-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 107, 157, 0.1));
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    display: inline-block;
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1) rotate(10deg);
}

.platform-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.platform-card .status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.status-badge.found {
    background-color: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.status-badge.notfound {
    background-color: rgba(255, 68, 68, 0.2);
    color: #ff4444;
    border: 1px solid #ff4444;
}

.status-badge.error {
    background-color: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid #ffa500;
}

.visit-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.visit-btn:hover:not(:disabled) {
    background: #00f0ff;
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.visit-btn:disabled {
    background: #444;
    color: #888;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}