        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --gold: #FFD700;
            --gold-dark: #FFA500;
            --gold-darker: #FF8C00;
            --bg-dark: #0a0a0a;
            --bg-darker: #000000;
            --text-light: #ffffff;
            --text-gray: #aaaaaa;
            --text-dark: #666666;
            --success: #51cf66;
            --danger: #ff6b6b;
            --info: #4dabf7;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Навигация */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold);
        }
        
        .nav-button {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg-dark);
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .nav-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }
        
        /* Герой секция */
        .audits-hero {
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 150px 20px 80px;
            background: radial-gradient(ellipse at top center, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
            overflow: hidden;
        }
        
        .audits-hero-content {
            max-width: 900px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .audits-hero-title {
            font-size: clamp(3rem, 7vw, 5rem);
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 3s ease-in-out infinite alternate;
        }
        
        @keyframes glow {
            from { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5)); }
            to { filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.8)); }
        }
        
        .audits-hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }
        
        .security-badges {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .security-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .badge-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            position: relative;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .badge-label {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        /* Security particles */
        .security-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            opacity: 0.1;
        }
        
        .grid-line {
            position: absolute;
            background: var(--gold);
            opacity: 0.3;
        }
        
        .grid-line.horizontal {
            width: 100%;
            height: 1px;
            animation: moveHorizontal 20s linear infinite;
        }
        
        .grid-line.vertical {
            width: 1px;
            height: 100%;
            animation: moveVertical 15s linear infinite;
        }
        
        @keyframes moveHorizontal {
            from { transform: translateY(-100%); }
            to { transform: translateY(100vh); }
        }
        
        @keyframes moveVertical {
            from { transform: translateX(-100%); }
            to { transform: translateX(100vw); }
        }
        
        /* Секции */
        .section {
            padding: 30px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--text-gray);
            font-size: 1.2rem;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Основные аудиты */
        .main-audits {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 100px;
        }
        
        .audit-card {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.02));
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 30px;
            padding: 50px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .audit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .audit-card:hover::before {
            transform: translateX(100%);
        }
        
        .audit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
            border-color: var(--gold);
        }
        
        .audit-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 30px;
        }
        
        .auditor-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .auditor-logo {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--gold);
        }
        
        .auditor-details h3 {
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 5px;
        }
        
        .audit-date {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        .audit-status {
            padding: 8px 20px;
            background: rgba(81, 207, 102, 0.2);
            color: var(--success);
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(81, 207, 102, 0.3);
        }
        
        .audit-content {
            margin-bottom: 30px;
        }
        
        .audit-description {
            color: var(--text-gray);
            margin-bottom: 25px;
            line-height: 1.8;
        }
        
        .findings-summary {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .finding-item {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .finding-item:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.05);
        }
        
        .finding-number {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .finding-number.critical { color: var(--danger); }
        .finding-number.high { color: #ff9800; }
        .finding-number.medium { color: #ffc107; }
        .finding-number.low { color: var(--success); }
        
        .finding-label {
            font-size: 0.85rem;
            color: var(--text-gray);
        }
        
        .audit-actions {
            display: flex;
            gap: 15px;
        }
        
        .audit-btn {
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg-dark);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--gold);
        }
        
        /* Дополнительные проверки */
        .additional-checks {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 30px;
            padding: 60px;
            margin-bottom: 100px;
        }
        
        .checks-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        .check-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 20px;
            padding: 35px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .check-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
        }
        
        .check-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            position: relative;
        }
        
        .check-icon::after {
            content: '';
            position: absolute;
            inset: -5px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .check-card:hover .check-icon::after {
            opacity: 0.3;
        }
        
        .check-title {
            font-size: 1.3rem;
            color: var(--gold);
            margin-bottom: 10px;
        }
        
        .check-provider {
            color: var(--text-light);
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .check-description {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .check-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(81, 207, 102, 0.1);
            color: var(--success);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        /* Bug Bounty */
        .bug-bounty {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 165, 0, 0.03));
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 40px;
            padding: 80px 60px;
            text-align: center;
            margin-bottom: 100px;
            position: relative;
            overflow: hidden;
        }
        
        .bug-bounty::before {
            content: '🐛';
            position: absolute;
            font-size: 300px;
            opacity: 0.03;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-15deg);
        }
        
        .bounty-content {
            position: relative;
            z-index: 1;
        }
        
        .bounty-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .bounty-subtitle {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 50px;
        }
        
        .bounty-rewards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .reward-tier {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px 20px;
            transition: all 0.3s ease;
        }
        
        .reward-tier:hover {
            transform: translateY(-5px) scale(1.05);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .tier-name {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        
        .tier-name.critical { color: var(--danger); }
        .tier-name.high { color: #ff9800; }
        .tier-name.medium { color: #ffc107; }
        .tier-name.low { color: var(--success); }
        
        .tier-amount {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--gold);
        }
        
        .bounty-cta {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg-dark);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .bounty-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
        }
        
        /* Прозрачность золота */
        .gold-transparency {
            margin-bottom: 100px;
        }
        
        .transparency-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 50px;
        }
        
        .transparency-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 25px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .transparency-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
        }
        
        .transparency-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }
        
        .transparency-title {
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 15px;
        }
        
        .transparency-description {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .transparency-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .transparency-link:hover {
            gap: 12px;
            filter: brightness(1.2);
        }
        
        /* Timeline */
        .audit-timeline {
            position: relative;
            padding: 60px 0;
            margin-bottom: 100px;
        }
        
        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, var(--gold), var(--gold-dark));
            transform: translateX(-50%);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 60px;
            display: flex;
            align-items: center;
        }
        
        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .timeline-content {
            width: 45%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 20px;
            padding: 25px;
            transition: all 0.3s ease;
        }
        
        .timeline-content:hover {
            transform: scale(1.02);
            border-color: var(--gold);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
        }
        
        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--bg-dark);
            border: 3px solid var(--gold);
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-date {
            font-size: 0.9rem;
            color: var(--gold);
            margin-bottom: 5px;
        }
        
        .timeline-title {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--text-light);
        }
        
        .timeline-description {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        /* Футер */
        .footer {
            background: var(--bg-darker);
            padding: 60px 20px 30px;
            margin-top: 100px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            color: var(--gold);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--gold);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--gold);
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--gold);
            color: var(--bg-dark);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
        }
        
        /* Мобильная адаптация */
        .mobile-menu {
            display: none;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .audits-hero-title {
                font-size: 2.5rem;
            }
            
            .security-badges {
                gap: 20px;
            }
            
            .main-audits {
                grid-template-columns: 1fr;
            }
            
            .findings-summary {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .checks-grid {
                grid-template-columns: 1fr;
            }
            
            .bounty-rewards {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .transparency-cards {
                grid-template-columns: 1fr;
            }
            
            .timeline-line {
                left: 20px;
            }
            
            .timeline-item {
                flex-direction: column !important;
                align-items: flex-start;
                padding-left: 50px;
            }
            
            .timeline-content {
                width: 100%;
            }
            
            .timeline-dot {
                left: 20px;
            }
        }