:root {
    --bg-base: #0A0D14;
    --bg-surface: #111622;
    --bg-surface-hover: #181F2E;
    --border-color: #1E2638;
    --primary-red: #E74C3C;
    --primary-cyan: #3498DB;
    --accent-orange: #E67E22;
    --dark-red: #C0392B;
    --text-main: #E2E8F0;
    --text-muted: #8B9BB4;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --radius-sm: 4px;
    --radius-md: 6px;
}

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-base);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-base);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-red);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(15, 15, 15, 0.8);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--glass-border);
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-main);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo span {
            color: var(--primary-red);
        }

        .server-logo {
            height: 70px;
            width: auto;
            object-fit: contain;
            border-radius: 50%;
        }

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

        .nav-links a {
            color: var(--text-main);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:not(.btn-login)::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary-red);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-red);
        }

        .nav-links a:not(.btn-login):hover::after {
            width: 100%;
        }

        .btn-login {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(180deg, #2a475e 0%, #171a21 100%);
            color: #c7d5e0 !important;
            padding: 8px 16px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            border: 1px solid #171a21;
            transition: all 0.3s ease;
        }

        .btn-login:hover {
            background: linear-gradient(180deg, #66c0f4 0%, #2a475e 100%);
            color: #fff !important;
            border-color: #66c0f4;
            transform: translateY(-2px);
        }

        .nav-links a.discord-link:hover {
            color: #5865F2;
        }

        .nav-links a.discord-link::after {
            background-color: #5865F2;
        }

        /* Dev Toast */
        .dev-toast {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(-100px);
            background: rgba(16, 6, 6, 0.95);
            border: 1px solid var(--border-color);
            border-left: 4px solid var(--primary-red);
            color: var(--text-main);
            padding: 15px 25px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
            z-index: 9999;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            font-family: 'Inter', sans-serif;
        }

        .dev-toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        .dev-toast-icon {
            font-size: 1.5rem;
            color: var(--primary-red);
        }

        .dev-toast-content h4 {
            margin: 0 0 5px 0;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }

        .dev-toast-content p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* Language Selector */
        .lang-selector {
            position: relative;
            display: flex;
            align-items: center;
        }

        .lang-btn {
            color: var(--text-main);
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0.5rem 1rem;
            background: var(--bg-surface);
            border-radius: 6px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .lang-btn:hover {
            border-color: var(--primary-red);
        }

        .lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 10px;
            width: 200px;
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: var(--shadow);
            display: none;
            flex-direction: column;
            z-index: 1001;
            overflow: hidden;
        }

        .lang-dropdown.active {
            display: flex;
        }

        #langSearch {
            width: 100%;
            padding: 10px 15px;
            background: var(--bg-base);
            border: none;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-main);
            outline: none;
            font-family: 'Inter', sans-serif;
        }

        #langList {
            list-style: none;
            max-height: 250px;
            overflow-y: auto;
        }

        #langList::-webkit-scrollbar {
            width: 5px;
        }

        #langList li {
            padding: 10px 15px;
            cursor: pointer;
            transition: background 0.2s ease;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        #langList li:hover {
            background: rgba(225, 6, 0, 0.1);
            color: var(--primary-red);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-main);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(180deg, rgba(15, 15, 15, 0.7) 0%, rgba(15, 15, 15, 0.95) 100%), url('https://images.unsplash.com/photo-1605901309584-818e25960b8f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 2rem;
            position: relative;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(transparent, var(--bg-base));
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            animation: fadeInUp 1s ease-out;
            letter-spacing: 1px;
        }

        .hero h1 span {
            color: var(--primary-red);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 2rem;
            color: var(--text-muted);
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--text-muted);
            animation: bounce 2s infinite, fadeIn 1s ease-out 1s backwards;
            cursor: pointer;
            z-index: 10;
            text-decoration: none;
        }

        .scroll-indicator:hover {
            color: var(--primary-red);
        }

        .scroll-indicator span {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            40% {
                transform: translateX(-50%) translateY(-15px);
            }

            60% {
                transform: translateX(-50%) translateY(-7px);
            }
        }

        /* Snow Effect */
        #snow-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .snowflake {
            position: absolute;
            top: -10px;
            background: white;
            border-radius: 50%;
            pointer-events: none;
            animation: fall linear forwards;
            box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
        }

        @keyframes fall {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
            }

            100% {
                transform: translateY(105vh) translateX(20px) rotate(360deg);
            }
        }

        .btn-primary {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(45deg, var(--dark-red), var(--primary-red));
            color: var(--text-main);
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(225, 6, 0, 0.3);
            animation: fadeInUp 1s ease-out 0.4s backwards;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: width 0.3s ease;
            z-index: -1;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(225, 6, 0, 0.5);
        }

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

        .btn-secondary {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: rgba(26, 10, 10, 0.8);
            color: var(--text-main);
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            border-radius: 4px;
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .btn-secondary:hover {
            background: var(--bg-surface-hover);
            border-color: var(--primary-red);
            transform: translateY(-3px);
        }

        /* Main Content */
        main {
            max-width: 1000px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        /* Presentation */
        .presentation {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeIn 1s ease-out;
        }

        .presentation h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-red);
            letter-spacing: 0.5px;
        }

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

        /* Search Bar */
        .search-container {
            position: relative;
            margin-bottom: 3rem;
            width: 100%;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .search-container i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 1.2rem;
        }

        #searchInput {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-main);
            font-size: 1.1rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        #searchInput:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 15px rgba(225, 6, 0, 0.2);
        }

        /* Rules Accordion */
        .rules-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .rule-category {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-top: 3px solid var(--primary-cyan);
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.2s ease;
        }

        .rule-category:nth-child(1) { border-top-color: #22c55e; }
        .rule-category:nth-child(2) { border-top-color: #eab308; }
        .rule-category:nth-child(3) { border-top-color: #ef4444; }
        .rule-category:nth-child(4) { border-top-color: #a855f7; }
        .rule-category:nth-child(5) { border-top-color: #3b82f6; }
        .rule-category:nth-child(6) { border-top-color: #f97316; }
        .rule-category:nth-child(7) { border-top-color: #ec4899; }

        .rule-category:hover {
            border-color: var(--text-muted);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }

        .rule-header {
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: transparent;
            border-bottom: 1px solid transparent;
            transition: background 0.3s ease;
        }

        .rule-category.active .rule-header {
            border-bottom: 1px solid var(--border-color);
            background: rgba(255, 255, 255, 0.03);
        }

        .rule-header h3 {
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 15px;
            letter-spacing: 0.5px;
        }

        .rule-header h3 i {
            color: var(--primary-red);
        }

        .rule-header .icon-toggle {
            transition: transform 0.3s ease;
            font-size: 1.2rem;
            color: var(--text-muted);
        }

        .rule-category.active .icon-toggle {
            transform: rotate(180deg);
            color: var(--primary-red);
        }

        .rule-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
            background: rgba(0, 0, 0, 0.2);
        }

        .rule-category.active .rule-content {
            max-height: 2000px;
            transition: max-height 0.5s ease-in-out;
        }

        .rule-content-inner {
            padding: 2rem;
        }

        .rule-list {
            list-style: none;
        }

        .rule-list li {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed var(--border-color);
            position: relative;
        }

        .rule-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .rule-title {
            color: var(--text-main);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .rule-title::before {
            content: '';
            display: block;
            width: 8px;
            height: 8px;
            background: var(--primary-red);
            border-radius: 50%;
        }

        .rule-desc {
            color: var(--text-muted);
            margin-top: 0.5rem;
            font-size: 0.95rem;
            padding-left: 18px;
        }

        /* Beginner Guide Section */
        .guide-section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .guide-section h2 {
            text-align: center;
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--text-main);
        }

        .guide-section h2 span {
            color: var(--primary-red);
        }

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

        .guide-card {
            background: var(--bg-surface);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            border-top: 3px solid var(--primary-cyan);
            border-radius: var(--radius-sm);
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .guide-card:nth-child(1) { border-top-color: #3b82f6; }
        .guide-card:nth-child(2) { border-top-color: #8b5cf6; }
        .guide-card:nth-child(3) { border-top-color: #10b981; }

        .guide-card:hover {
            transform: translateY(-5px);
            border-color: var(--text-muted);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }

        .guide-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-red);
        }

        .guide-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .guide-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .guide-img.clickable-img {
            cursor: pointer;
        }

        /* Lightbox Modal */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 99999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(5px);
            opacity: 0;
            transition: opacity 0.3s ease;
            align-items: center;
            justify-content: center;
        }

        .lightbox.show {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .lightbox.show .lightbox-content {
            transform: scale(1);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: var(--text-main);
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
            z-index: 100000;
        }

        .lightbox-close:hover {
            color: var(--primary-red);
        }

        /* Back to Top */
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-red);
            color: var(--text-main);
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 4px 15px rgba(225, 6, 0, 0.4);
        }

        /* Leaderboard Section */
        .leaderboard-section {
            padding: 4rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .leaderboard-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: var(--text-main);
        }

        .leaderboard-section h2 span {
            color: var(--primary-cyan);
        }

        .leaderboard-container {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            margin-top: 2rem;
        }

        .table-responsive {
            width: 100%;
            overflow-x: auto;
        }

        .leaderboard-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            white-space: nowrap;
        }

        .leaderboard-table th, 
        .leaderboard-table td {
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.95rem;
        }

        .leaderboard-table th {
            background: #0D111A;
            color: var(--text-muted);
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
            border-bottom: 2px solid var(--border-color);
        }

        .leaderboard-table tr {
            transition: background 0.2s ease;
        }

        .leaderboard-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.02);
            border-left: 2px solid var(--primary-cyan);
        }

        .leaderboard-table tbody tr {
            border-left: 2px solid transparent;
        }

        .leaderboard-table tbody tr:last-child td {
            border-bottom: none;
        }

        .rank-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            font-weight: bold;
            font-size: 0.9rem;
        }

        .rank-1 .rank-badge { background: #fbbf24; color: #000; box-shadow: 0 0 10px rgba(251, 191, 36, 0.5); }
        .rank-2 .rank-badge { background: #9ca3af; color: #000; box-shadow: 0 0 10px rgba(156, 163, 175, 0.5); }
        .rank-3 .rank-badge { background: #b45309; color: #fff; box-shadow: 0 0 10px rgba(180, 83, 9, 0.5); }

        .player-name {
            font-weight: 600;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .kd-good { color: #22c55e; font-weight: 600; }
        .kd-avg { color: #eab308; font-weight: 600; }
        .kd-bad { color: #ef4444; font-weight: 600; }

        #backToTop.visible {
            opacity: 1;
            visibility: visible;
        }

        #backToTop:hover {
            background: var(--dark-red);
            transform: translateY(-5px);
        }

        /* Footer */
        footer {
            background: var(--bg-surface);
            padding: 3rem 2rem 1.5rem;
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            font-weight: 700;
        }

        .footer-logo span {
            color: var(--primary-red);
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
        }

        .social-links a {
            color: var(--text-main);
            font-size: 1.5rem;
            transition: all 0.3s ease;
            width: 45px;
            height: 45px;
            background: var(--bg-base);
            border: 1px solid var(--border-color);
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            text-decoration: none;
        }

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

        .footer-bottom {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px dashed var(--border-color);
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .fade-in-section {
            opacity: 0;
            transform: translateY(20px);
            visibility: hidden;
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            will-change: opacity, visibility;
        }

        .fade-in-section.is-visible {
            opacity: 1;
            transform: none;
            visibility: visible;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 3rem;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(16, 6, 6, 0.98);
                padding: 1rem 0;
                text-align: center;
                border-bottom: 1px solid var(--border-color);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

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

            .rule-header h3 {
                font-size: 1.1rem;
            }
        }
        
        /* Google Translate Fixes */
        body {
            top: 0px !important;
        }
        .goog-te-banner-frame.skiptranslate {
            display: none !important;
        }
        .goog-tooltip {
            display: none !important;
        }
        .goog-tooltip:hover {
            display: none !important;
        }
        .goog-text-highlight {
            background-color: transparent !important;
            border: none !important;
            box-shadow: none !important;
        }

        /* Features Section */
        .features-section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .features-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--text-main);
            letter-spacing: 0.5px;
        }

        .features-section h2 span {
            color: var(--primary-red);
        }

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

        .feature-card {
            background: var(--bg-surface);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            border-top: 3px solid var(--primary-cyan);
            border-radius: var(--radius-sm);
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .feature-card:nth-child(1) { border-top-color: #10b981; }
        .feature-card:nth-child(2) { border-top-color: #f59e0b; }
        .feature-card:nth-child(3) { border-top-color: #3b82f6; }
        .feature-card:nth-child(4) { border-top-color: #8b5cf6; }

        .feature-card i {
            font-size: 2.5rem;
            color: var(--text-main);
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--text-main);
        }

        .feature-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--text-muted);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }