        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            color: #f0f0f0;
            padding-top: 80px;
        }
        a { color: #ff4655; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #ff8e9e; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(20, 20, 30, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 2px solid #ff4655;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #ff4655;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .logo a:hover { color: #fff; text-decoration: none; }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #ccc;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background: #ff4655;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ff4655;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(20, 20, 30, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #444;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #ccc;
            padding: 15px;
            border-bottom: 1px solid #333;
            font-weight: 600;
        }
        .nav-mobile a:hover { background: #ff4655; color: #fff; }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            margin-bottom: 20px;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #ff4655; }
        .main-content {
            background: rgba(30, 30, 46, 0.9);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            .main-content { padding: 20px; }
        }
        h1, h2, h3, h4 {
            color: #ffcc00;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
            line-height: 1.3;
        }
        h1 { font-size: 2.8rem; border-bottom: 3px solid #ff4655; padding-bottom: 10px; }
        h2 { font-size: 2.2rem; color: #4dabf7; }
        h3 { font-size: 1.8rem; color: #69db7c; }
        h4 { font-size: 1.4rem; color: #ffa94d; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            h4 { font-size: 1.2rem; }
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 70, 85, 0.1);
            border-left: 4px solid #ff4655;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .feature-img {
            width: 100%;
            max-width: 800px;
            margin: 30px auto;
            border: 5px solid #ff4655;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
        }
        .feature-img img { width: 100%; transition: transform 0.5s ease; }
        .feature-img:hover img { transform: scale(1.02); }
        .content-link {
            font-weight: bold;
            border-bottom: 1px dashed #ff4655;
        }
        .form-section {
            background: rgba(40, 40, 60, 0.8);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .form-title { color: #ffcc00; margin-bottom: 15px; }
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .form-group { margin-bottom: 15px; }
        label { display: block; margin-bottom: 5px; color: #ccc; }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #555;
            border-radius: 6px;
            background: #222;
            color: #fff;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff4655;
            box-shadow: 0 0 8px rgba(255, 70, 85, 0.5);
        }
        button {
            background: linear-gradient(90deg, #ff4655, #ff6b6b);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #ff6b6b, #ff4655);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 70, 85, 0.4);
        }
        .stars { display: flex; gap: 5px; margin: 10px 0; }
        .star { color: #555; cursor: pointer; font-size: 1.5rem; }
        .star:hover, .star.active { color: #ffcc00; }
        .site-footer {
            background: #0c0c0c;
            padding: 40px 0 20px;
            border-top: 2px solid #ff4655;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 20px 0;
            font-style: italic;
            color: #aaa;
        }
        friend-link a {
            color: #4dabf7;
            margin: 0 10px;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .last-updated {
            color: #aaa;
            font-style: italic;
            margin-bottom: 20px;
            text-align: right;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
