        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0c0c14;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #f96816;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff9a3d;
            transform: translateY(-2px);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.2;
        }
        h1 {
            font-size: 3.5rem;
            background: linear-gradient(90deg, #f96816, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: 2.5rem;
            border-left: 5px solid #f96816;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffcc00;
            margin-top: 1.8rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #a3d9ff;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #b0b0d0;
            font-weight: 300;
        }
        .highlight {
            background-color: rgba(249, 104, 22, 0.15);
            border-left: 4px solid #f96816;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        header {
            background: linear-gradient(180deg, rgba(12, 12, 20, 0.95) 0%, rgba(12, 12, 20, 0.8) 100%);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid #222233;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #f96816, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
        }
        .my-logo span {
            color: #ffffff;
            -webkit-text-fill-color: #ffffff;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #ccccdd;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #f96816;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after,
        .desktop-nav a.active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f96816;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: rgba(20, 20, 35, 0.98);
            backdrop-filter: blur(15px);
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            z-index: 999;
            transform: translateY(-20px);
            opacity: 0;
            transition: all 0.4s ease;
        }
        .mobile-nav.active {
            display: block;
            transform: translateY(0);
            opacity: 1;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 20px;
        }
        .mobile-nav a {
            color: #ccccdd;
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: #333344;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #151522;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #666;
        }
        .breadcrumb a {
            color: #a3d9ff;
        }
        .hero {
            background: radial-gradient(circle at 30% 20%, #1a1a2e 0%, #0c0c14 70%);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(249, 104, 22, 0.1) 0%, transparent 70%);
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero img {
            margin: 30px auto;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(249, 104, 22, 0.3);
            border: 2px solid #333344;
            max-width: 800px;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            background: #151522;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #333344;
        }
        .search-box h3 {
            text-align: center;
            margin-bottom: 20px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px;
            border: none;
            border-radius: 8px 0 0 8px;
            background-color: #222233;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(45deg, #f96816, #ff9a3d);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(45deg, #e55a0c, #f96816);
        }
        .interactive-section {
            background-color: #151522;
            border-radius: 12px;
            padding: 40px;
            margin: 40px 0;
            border: 1px solid #333344;
        }
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #ccccdd;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #444455;
            background-color: #222233;
            color: #fff;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        .star {
            font-size: 1.8rem;
            color: #444455;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active,
        .star:hover {
            color: #ffcc00;
        }
        .submit-btn {
            background: linear-gradient(45deg, #007acc, #00a8ff);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(45deg, #0066aa, #0090e0);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0, 122, 204, 0.4);
        }
        .related-links {
            background-color: #1a1a2e;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
        }
        .related-links h3 {
            margin-bottom: 20px;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .links-grid a {
            display: block;
            padding: 12px 15px;
            background-color: #222233;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .links-grid a:hover {
            background-color: #333344;
            transform: translateX(5px);
        }
        footer {
            background-color: #090910;
            padding: 60px 0 30px;
            border-top: 2px solid #222233;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #f96816;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-section p {
            color: #9999aa;
        }
        .friend-links {
            background-color: #151522;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .friend-links h4 {
            color: #ffcc00;
            margin-bottom: 15px;
        }
        .friend-links a {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 10px;
            padding: 8px 15px;
            background-color: #222233;
            border-radius: 6px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333344;
            color: #666677;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
            section { padding: 40px 0; }
            .interactive-section { padding: 25px; }
            .form-grid { grid-template-columns: 1fr; }
            .search-form { flex-direction: column; }
            .search-form input { border-radius: 8px; margin-bottom: 10px; }
            .search-form button { border-radius: 8px; padding: 15px; }
        }
