* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: #0b0e1f;
            color: #f0f0ff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* NEON THEME */
        :root {
            --neon-blue: #00f5ff;
            --neon-pink: #00ff17;
            --neon-purple: #aa00ff;
            --neon-glow: 0 0 15px;
            --bg-dark: #0b0e1f;
            --bg-card: #14182f;
            --text-dim: #b0b8ff;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1e30;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--neon-blue);
            border-radius: 10px;
        }
        
        /* Header */
        .header {
            background: rgba(11, 14, 31, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-blue);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
        }
        
        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .nav-menu a {
            font-weight: 600;
            transition: 0.3s;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-menu a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-pink);
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--neon-blue);
        }
        
        /* Hero Section */
        .hero {
            min-height: 80vh;
            background: url('img/ban.jpeg') center/cover no-repeat fixed;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(11, 14, 31, 0.7);
            backdrop-filter: blur(3px);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #fff, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(0,245,255,0.5);
        }
        
        .hero p {
            font-size: 1.3rem;
            color: #ddd;
            margin-bottom: 30px;
            text-shadow: 0 0 10px rgba(0,245,255,0.5);
        }
        
        .hero-btn {
            display: inline-block;
            padding: 15px 40px;
            background: transparent;
            border: 2px solid var(--neon-pink);
            color: var(--neon-pink);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 50px;
            transition: 0.3s;
            box-shadow: 0 0 20px rgba(255,0,199,0.3);
        }
        
        .hero-btn:hover {
            background: var(--neon-pink);
            color: #0b0e1f;
            box-shadow: 0 0 40px var(--neon-pink);
        }
        
        /* Games Section */
        .games {
            padding: 80px 0;
            background: var(--bg-dark);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 50px;
            font-weight: 700;
        }
        
        .section-title span {
            color: var(--neon-purple);
            text-shadow: 0 0 20px var(--neon-purple);
        }
        
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .game-card {
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--neon-blue);
            box-shadow: 0 0 30px rgba(0,245,255,0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 50px var(--neon-blue);
        }
        
        .game-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .game-info {
            padding: 20px;
        }
        
        .game-info h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--neon-pink);
        }
        
        .game-info p {
            color: var(--text-dim);
            margin-bottom: 15px;
        }
        
        .play-btn {
            display: inline-block;
            padding: 10px 25px;
            background: transparent;
            border: 1px solid var(--neon-purple);
            color: var(--neon-purple);
            border-radius: 30px;
            font-weight: 600;
            transition: 0.3s;
        }
        
        .play-btn:hover {
            background: var(--neon-purple);
            color: #0b0e1f;
            box-shadow: 0 0 30px var(--neon-purple);
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
            background: #0f1325;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-item {
            text-align: center;
            padding: 30px 20px;
            background: var(--bg-card);
            border-radius: 15px;
            border: 1px solid var(--neon-pink);
            transition: 0.3s;
        }
        
        .feature-item:hover {
            border-color: var(--neon-blue);
            box-shadow: 0 0 40px var(--neon-blue);
        }
        
        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--neon-blue);
            text-shadow: 0 0 30px var(--neon-blue);
        }
        
        .feature-item h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #fff;
        }
        
        .feature-item p {
            color: var(--text-dim);
        }
        
        /* Contact Form */
        .contact {
            padding: 80px 0;
            background: var(--bg-dark);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--bg-card);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--neon-purple);
            box-shadow: 0 0 30px rgba(170,0,255,0.3);
        }
        
        .contact-form h2 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.2rem;
            color: var(--neon-purple);
            text-shadow: 0 0 15px var(--neon-purple);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255,255,255,0.05);
            border: 1px solid #333;
            border-radius: 10px;
            color: #fff;
            font-family: inherit;
            transition: 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-purple);
            box-shadow: 0 0 15px var(--neon-purple);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: transparent;
            border: 2px solid var(--neon-purple);
            color: var(--neon-purple);
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 10px;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .submit-btn:hover {
            background: var(--neon-purple);
            color: #0b0e1f;
            box-shadow: 0 0 40px var(--neon-purple);
        }
        
        /* Footer */
        .footer {
            background: #0a0c1a;
            border-top: 1px solid var(--neon-blue);
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .footer-logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .footer-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .footer-links a {
            font-weight: 500;
            transition: 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            border-top: 1px solid #222;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #888;
        }
        
        .age-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            background: rgba(255,0,0,0.2);
            padding: 5px 15px;
            border-radius: 30px;
            border: 1px solid #ff4444;
            color: #ff8888;
        }
        
        .age-badge i {
            font-size: 1.2rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(11,14,31,0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 20px;
                backdrop-filter: blur(10px);
                border-bottom: 1px solid var(--neon-blue);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: #0b0e1f;
            color: #f0f0ff;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        :root {
            --neon-blue: #00f5ff;
            --neon-pink: #ff00c7;
            --neon-purple: #aa00ff;
            --neon-glow: 0 0 15px;
            --bg-dark: #0b0e1f;
            --bg-card: #14182f;
            --text-dim: #b0b8ff;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1e30;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--neon-blue);
            border-radius: 10px;
        }
        
        /* Header */
        .header {
            background: rgba(11, 14, 31, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-blue);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
        }
        
        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .nav-menu a {
            font-weight: 600;
            transition: 0.3s;
            padding: 5px 0;
        }
        
        .nav-menu a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }
        
        .menu-toggle {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--neon-blue);
        }
        
        /* Main Content */
        .main {
            flex: 1;
            padding: 60px 0;
            background: var(--bg-dark);
        }
        
        .content-card {
            background: var(--bg-card);
            border: 1px solid var(--neon-purple);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 0 30px rgba(170,0,255,0.3);
        }
        
        .content-card h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--neon-purple);
            text-shadow: 0 0 15px var(--neon-purple);
        }
        
        .content-card h2 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: var(--neon-blue);
        }
        
        .content-card p, .content-card li {
            color: var(--text-dim);
            margin-bottom: 15px;
        }
        
        .content-card ul, .content-card ol {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .content-card li {
            margin-bottom: 8px;
        }
        
        .content-card strong {
            color: #fff;
        }
        
        .content-card a {
            color: var(--neon-pink);
            text-decoration: underline;
        }
        
        .content-card a:hover {
            color: var(--neon-blue);
        }
        
        /* Footer */
        .footer {
            background: #0a0c1a;
            border-top: 1px solid var(--neon-blue);
            padding: 40px 0 20px;
            margin-top: auto;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .footer-logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .footer-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .footer-links a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            border-top: 1px solid #222;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #888;
        }
        
        .age-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            background: rgba(255,0,0,0.2);
            padding: 5px 15px;
            border-radius: 30px;
            border: 1px solid #ff4444;
            color: #ff8888;
        }
        
        .age-badge i {
            font-size: 1.2rem;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(11,14,31,0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 20px;
                backdrop-filter: blur(10px);
                border-bottom: 1px solid var(--neon-blue);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: #0b0e1f;
            color: #f0f0ff;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        :root {
            --neon-blue: #00f5ff;
            --neon-pink: #ff00c7;
            --neon-purple: #aa00ff;
            --neon-glow: 0 0 15px;
            --bg-dark: #0b0e1f;
            --bg-card: #14182f;
            --text-dim: #b0b8ff;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1e30;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--neon-blue);
            border-radius: 10px;
        }
        
        /* Header */
        .header {
            background: rgba(11, 14, 31, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-blue);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
        }
        
        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .nav-menu a {
            font-weight: 600;
            transition: 0.3s;
            padding: 5px 0;
        }
        
        .nav-menu a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }
        
        .menu-toggle {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--neon-blue);
        }
        
        /* Main Content */
        .main {
            flex: 1;
            padding: 60px 0;
            background: var(--bg-dark);
        }
        
        .content-card {
            background: var(--bg-card);
            border: 1px solid var(--neon-pink);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 0 30px rgba(255,0,199,0.3);
        }
        
        .content-card h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--neon-pink);
            text-shadow: 0 0 15px var(--neon-pink);
        }
        
        .content-card h2 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: var(--neon-blue);
        }
        
        .content-card p, .content-card li {
            color: var(--text-dim);
            margin-bottom: 15px;
        }
        
        .content-card ul, .content-card ol {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .content-card li {
            margin-bottom: 8px;
        }
        
        .content-card strong {
            color: #fff;
        }
        
        .content-card a {
            color: var(--neon-pink);
            text-decoration: underline;
        }
        
        .content-card a:hover {
            color: var(--neon-blue);
        }
        
        /* Footer */
        .footer {
            background: #0a0c1a;
            border-top: 1px solid var(--neon-blue);
            padding: 40px 0 20px;
            margin-top: auto;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .footer-logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .footer-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .footer-links a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            border-top: 1px solid #222;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #888;
        }
        
        .age-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            background: rgba(255,0,0,0.2);
            padding: 5px 15px;
            border-radius: 30px;
            border: 1px solid #ff4444;
            color: #ff8888;
        }
        
        .age-badge i {
            font-size: 1.2rem;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(11,14,31,0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 20px;
                backdrop-filter: blur(10px);
                border-bottom: 1px solid var(--neon-blue);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

img{max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
.cfc-logo-img{width:50px}
.cfc-articles{padding:72px 0;background:linear-gradient(180deg, rgba(64, 51, 44, 0.92), rgba(51, 22, 22, 0.98))}
.cfc-articles__head{text-align:center;margin-bottom:36px}
.cfc-articles__kicker{display:inline-flex;margin-bottom:12px;padding:7px 13px;border-radius:999px;background:rgba(204,16,0,.1);font-size:13px;font-weight:800;letter-spacing:.07em;text-transform:uppercase}
.cfc-articles__title{margin:0 0 12px;font-size:clamp(30px,4vw,48px);line-height:1.1}
.cfc-articles__text{max-width:760px;margin:0 auto;line-height:1.7;opacity:.78}
.cfc-articles__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.cfc-article-card{display:flex;flex-direction:column;min-height:100%;padding:26px;border-radius:24px;background: rgba(55, 35, 35, 0.94);border:1px solid rgba(70,20,15,.1);box-shadow:0 18px 46px rgba(70,20,15,.09)}
.cfc-article-card__date{display:inline-flex;width:max-content;margin-bottom:14px;padding:6px 12px;border-radius:999px;background:rgba(204,16,0,.1);font-size:13px;font-weight:800}
.cfc-article-card h3{margin:0 0 12px;font-size:24px;line-height:1.22}
.cfc-article-card p{margin:0 0 22px;line-height:1.65;opacity:.78}
.cfc-article-card a{margin-top:auto;width:max-content}
.cfc-note-link{display:inline-block;background:#cc1000;color:#fff!important;padding:10px 20px;border-radius:5px}
@media(max-width:900px){.cfc-articles__grid{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.cfc-articles__grid{grid-template-columns:1fr}.cfc-articles{padding:48px 0}}

img{max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
.cfc-logo-img{width:50px}

.cfc-page-body{
    background:
            radial-gradient(circle at 12% 8%,rgba(204,16,0,.18),transparent 32%),
            radial-gradient(circle at 86% 12%,rgba(255,191,72,.22),transparent 34%),
            linear-gradient(180deg,#fff7ef 0%,#ffffff 48%,#fff1e6 100%);
    color:#231914;
}

.cfc-page-main{
    position:relative;
    overflow:hidden;
    padding:68px 0 86px;
}

.cfc-page-main:before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.45;
    background-image:
            radial-gradient(circle,rgba(204,16,0,.1) 1px,transparent 1px);
    background-size:28px 28px;
    mask-image:linear-gradient(180deg,transparent 0%,#000 15%,#000 85%,transparent 100%);
}

.cfc-page-shell{
    position:relative;
    width:min(960px,calc(100% - 32px));
    margin:0 auto;
    padding:clamp(24px,4vw,54px);
    border-radius:34px;
    background:rgba(255,255,255,.97);
    border:1px solid rgba(80,30,15,.1);
    box-shadow:
            0 28px 84px rgba(80,30,15,.13),
            inset 0 1px 0 rgba(255,255,255,.95);
}

.cfc-page-shell:before{
    content:"CardFreeCarnival guide";
    display:inline-flex;
    width:max-content;
    max-width:100%;
    margin-bottom:22px;
    padding:8px 14px;
    border-radius:999px;
    background:linear-gradient(135deg,rgba(204,16,0,.1),rgba(255,191,72,.24));
    color:#b20f00;
    font-size:13px;
    font-weight:800;
    letter-spacing:.06em;
    text-transform:uppercase;
}

.cfc-page-shell h1,
.cfc-page-shell h2,
.cfc-page-shell h3,
.cfc-page-shell h4{
    color:#211612;
    letter-spacing:-.03em;
}

.cfc-page-shell h1{
    max-width:860px;
    margin:0 0 20px;
    font-size:clamp(34px,5vw,62px);
    line-height:1.02;
}

.cfc-page-shell h2{
    position:relative;
    margin:48px 0 16px;
    padding-top:18px;
    font-size:clamp(27px,3.4vw,40px);
    line-height:1.1;
}

.cfc-page-shell h2:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:88px;
    height:5px;
    border-radius:999px;
    background:linear-gradient(90deg,#cc1000,#ffbf48);
}

.cfc-page-shell h3{
    margin:30px 0 12px;
    font-size:clamp(22px,2.4vw,28px);
    line-height:1.18;
    color:#b20f00;
}

.cfc-page-shell h4{
    margin:24px 0 10px;
    font-size:21px;
}

.cfc-page-shell p{
    margin:0 0 18px;
    color:#594941;
    font-size:17px;
    line-height:1.82;
}

.cfc-page-shell .article-meta{
    display:inline-flex;
    width:max-content;
    max-width:100%;
    margin:0 0 20px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(204,16,0,.09);
    color:#b20f00;
    font-size:13px;
    font-weight:800;
}

.cfc-page-shell a{
    color:#b20f00;
    font-weight:800;
    text-decoration:none;
    border-bottom:1px solid rgba(178,15,0,.28);
}

.cfc-page-shell a:hover{
    color:#7f0a00;
    border-bottom-color:currentColor;
}

.cfc-page-shell img{
    display:block;
    width:100%;
    height:auto;
    margin:26px 0;
    border-radius:26px;
    border:1px solid rgba(80,30,15,.1);
    box-shadow:0 20px 50px rgba(80,30,15,.12);
}

.cfc-page-shell ul,
.cfc-page-shell ol{
    display:grid;
    gap:12px;
    margin:22px 0 28px;
    padding:0;
    list-style:none;
}

.cfc-page-shell li{
    position:relative;
    padding:15px 16px 15px 50px;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(80,30,15,.1);
    color:#594941;
    font-size:16.5px;
    line-height:1.65;
    box-shadow:0 10px 26px rgba(80,30,15,.06);
}

.cfc-page-shell ul li:before{
    content:"";
    position:absolute;
    left:18px;
    top:23px;
    width:12px;
    height:12px;
    border-radius:50%;
    background:linear-gradient(135deg,#cc1000,#ffbf48);
    box-shadow:0 0 0 5px rgba(204,16,0,.08);
}

.cfc-page-shell ol{
    counter-reset:cfc-counter;
}

.cfc-page-shell ol li{
    counter-increment:cfc-counter;
}

.cfc-page-shell ol li:before{
    content:counter(cfc-counter);
    position:absolute;
    left:14px;
    top:14px;
    width:26px;
    height:26px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#211612;
    color:#fff;
    font-size:13px;
    font-weight:800;
}

.cfc-page-shell table{
    width:100%;
    margin:30px 0;
    border-collapse:separate;
    border-spacing:0;
    overflow:hidden;
    border-radius:22px;
    border:1px solid rgba(80,30,15,.1);
    background:#fff;
    box-shadow:0 18px 42px rgba(80,30,15,.08);
}

.cfc-page-shell th,
.cfc-page-shell td{
    padding:16px;
    text-align:left;
    vertical-align:top;
    border-bottom:1px solid rgba(80,30,15,.1);
    color:#594941;
}

.cfc-page-shell th{
    background:linear-gradient(135deg,#fff3ea,#fff8dd);
    color:#211612;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.cfc-page-shell tr:last-child td{
    border-bottom:0;
}

.cfc-page-shell blockquote{
    margin:32px 0;
    padding:24px 26px;
    border-left:5px solid #cc1000;
    border-radius:22px;
    background:#fff4ed;
}

.cfc-page-shell blockquote p{
    margin:0;
    color:#4f2c22;
    font-size:18px;
}

.cfc-page-shell .toc,
.cfc-page-shell .contents,
.cfc-page-shell .table-of-contents{
    margin:26px 0 36px;
    padding:24px;
    border-radius:24px;
    border:1px solid rgba(204,16,0,.16);
    background:
            radial-gradient(circle at 12% 0%,rgba(255,191,72,.28),transparent 32%),
            linear-gradient(135deg,#fff5ee,#fffdf4);
}

.cfc-page-shell .toc strong,
.cfc-page-shell .contents strong,
.cfc-page-shell .table-of-contents strong{
    display:block;
    margin-bottom:14px;
    color:#211612;
    font-size:21px;
}

.cfc-page-shell .toc ol,
.cfc-page-shell .toc ul,
.cfc-page-shell .contents ol,
.cfc-page-shell .contents ul,
.cfc-page-shell .table-of-contents ol,
.cfc-page-shell .table-of-contents ul{
    margin:0;
    display:grid;
    gap:9px;
}

.cfc-page-shell .toc li,
.cfc-page-shell .contents li,
.cfc-page-shell .table-of-contents li{
    padding:0;
    border:0;
    background:transparent;
    box-shadow:none;
}

.cfc-page-shell .toc li:before,
.cfc-page-shell .contents li:before,
.cfc-page-shell .table-of-contents li:before{
    display:none;
}

.cfc-page-shell .author-note,
.cfc-page-shell .note,
.cfc-page-shell .summary-box{
    margin:34px 0 0;
    padding:24px;
    border-radius:24px;
    border:1px solid rgba(255,191,72,.48);
    background:linear-gradient(135deg,#fff8df,#ffffff);
}

.cfc-page-shell .author-note p,
.cfc-page-shell .note p,
.cfc-page-shell .summary-box p{
    margin-bottom:0;
}

.cfc-page-related{
    position:relative;
    width:min(960px,calc(100% - 32px));
    margin:28px auto 0;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}

.cfc-page-related a{
    display:block;
    padding:20px;
    border-radius:22px;
    background:rgba(255,255,255,.88);
    border:1px solid rgba(80,30,15,.1);
    color:#211612;
    box-shadow:0 16px 38px rgba(80,30,15,.1);
    text-decoration:none;
}

.cfc-page-related span{
    display:block;
    margin-bottom:8px;
    color:#b20f00;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.cfc-page-related strong{
    display:block;
    line-height:1.35;
}

@media(max-width:900px){
    .cfc-page-related{grid-template-columns:1fr}
    .cfc-page-shell table{display:block;overflow-x:auto}
}

@media(max-width:640px){
    .cfc-page-main{padding:42px 0 58px}
    .cfc-page-shell{width:calc(100% - 24px);padding:24px 18px;border-radius:22px}
    .cfc-page-shell:before{width:auto;font-size:12px;white-space:normal}
    .cfc-page-shell p,
    .cfc-page-shell li{font-size:16px}
    .cfc-page-shell li{padding-left:44px}
}