/*
Theme Name: Huracan
Theme URI: https://huracan-casino.com
Author: Huracan Corp
Description: A premium WordPress theme for Huracan Casino with a Supercar concept.
Version: 1.1.7
*/

:root {
    --color-bg: #0a0a0a;
    --color-accent: #DFFF00;
    --color-text: #ffffff;
    --color-gray: #888888;
    --font-heading: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    --font-body: 'Noto Sans KR', sans-serif;
    --skew-deg: -10deg;
}

* {
    box-sizing: border-box;
}

@keyframes fadeInCar {
    0% { opacity: 0; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin: 0;
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.skew-box {
    transform: skew(var(--skew-deg));
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent);
    padding: 20px;
    display: inline-block;
}

.skew-box > * {
    transform: skew(10deg);
}

.btn-neon {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    transform: skew(var(--skew-deg));
    box-shadow: 0 0 15px var(--color-accent), inset 0 0 10px var(--color-accent);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-neon:hover {
    background: var(--color-accent);
    color: var(--color-bg);
    box-shadow: 0 0 30px var(--color-accent), inset 0 0 20px var(--color-accent);
}

.btn-neon > span {
    display: block;
    transform: skew(10deg);
}

.highlight {
    background: var(--color-accent);
    color: #000000;
    padding: 2px 8px;
    border-radius: 2px;
    font-weight: 800;
    box-shadow: 0 0 10px var(--color-accent);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.site-header:hover {
    background: rgba(0, 0, 0, 0.95);
    border-bottom-color: rgba(223, 255, 0, 0.3);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    color: var(--color-accent);
    text-shadow: 0 0 10px var(--color-accent);
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    letter-spacing: 1px;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--color-accent) !important;
    text-shadow: 0 0 10px var(--color-accent), 0 0 20px var(--color-accent);
}

.main-navigation a:hover::after {
    width: 100%;
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-top: 80px;
    background: transparent;
    z-index: 10;
}

.hero-section::before, .hero-section::after {
    display: none;
}

#speed-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 20;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #a0a0a0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.6);
    -webkit-text-stroke: 1px var(--color-accent);
    letter-spacing: -2px;
    white-space: nowrap;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #cccccc;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.features-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    background: rgba(10, 10, 10, 0.8);
}

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

.feature-card {
    background: #111;
    padding: 40px;
    border: 1px solid #333;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-15px) skew(var(--skew-deg));
    border-color: var(--color-accent);
    box-shadow: 0 15px 40px rgba(223, 255, 0, 0.2), inset 0 0 20px rgba(223, 255, 0, 0.05);
}

.feature-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--color-accent));
    display: inline-block;
    transform: skew(10deg);
}

.feature-card h3 {
    color: var(--color-text);
    font-size: 1.8rem;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.feature-card:hover h3 {
    color: var(--color-accent);
}

.dashboard-header {
    background: #111;
    padding: 60px 0;
    border-bottom: 2px solid var(--color-accent);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.dashboard-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    box-shadow: 0 0 20px var(--color-accent);
}

.dashboard-title {
    font-size: 3rem;
    color: var(--color-text);
}

.promotion-grid {
    display: grid;
    gap: 20px;
}

.promo-item {
    display: flex;
    background: #1a1a1a;
    border: 1px solid #333;
}

.promo-content {
    padding: 20px;
}

#seo-content {
    background-color: #050505;
    color: #888888;
    padding: 100px 0;
    border-top: 1px solid #111;
    position: relative;
    z-index: 2;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}

#seo-content article {
    max-width: 1100px;
    margin: 0 auto 80px;
    line-height: 2;
    background: rgba(20, 20, 20, 0.6);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

#seo-content article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    box-shadow: 0 0 15px var(--color-accent);
}

#seo-content h3, #seo-content h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    letter-spacing: -1px;
    border-left: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.faq-accordion summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #cccccc;
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion summary:hover {
    color: var(--color-accent);
    background: #111;
}

.faq-accordion summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: var(--color-accent);
    font-weight: bold;
}

.faq-accordion details[open] summary::after {
    content: '-';
}

.faq-accordion details[open] summary {
    border-bottom: 1px solid #222;
    color: var(--color-accent);
}

.faq-accordion p {
    padding: 20px;
    margin: 0;
    background: #080808;
    color: #999;
    line-height: 1.6;
}

.site-footer {
    padding: 40px 0 20px;
    background: #020202;
    border-top: 1px solid #111;
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    position: relative;
    z-index: 2;
}

.footer-legal {
    margin-top: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0.7;
}

.icon-text {
    border: 1px solid #333;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.65rem;
    color: #555;
}

.footer-content {
    padding: 0 20px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        white-space: normal;
        line-height: 1.2;
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 100001;
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid var(--color-accent);
        color: var(--color-accent);
        padding: 8px 12px;
        border-radius: 5px;
        font-size: 1.3rem;
        cursor: pointer;
        box-shadow: 0 0 15px var(--color-accent);
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

    .mobile-menu-toggle:hover {
        background: var(--color-accent);
        color: #000;
        box-shadow: 0 0 25px var(--color-accent);
        transform: scale(1.05);
    }

    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }

    .main-navigation {
        display: block !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        z-index: 100000;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 80px;
        box-shadow: none;
        border-left: none;
    }

    .main-navigation.menu-open {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .main-navigation a {
        font-size: 1.2rem;
        display: block;
        width: 100%;
        text-align: center;
    }

    #bg-animation {
        background-size: contain !important;
        background-position: center top 80px !important;
        background-repeat: no-repeat !important;
        background-color: #000 !important;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}

html {
    background-color: #000;
    height: 100%;
    overflow-y: auto;
}

body {
    min-height: 100%;
    position: relative;
    overflow-x: hidden;
    background-color: transparent;
    color: var(--color-text);
    font-family: var(--font-body);
}

#bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('assets/images/hero-bg.png') no-repeat center center/cover;
    animation: fadeInCar 2s ease-out forwards;
    transform-origin: center center;
    will-change: transform, filter;
}

#bg-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.sub-page-header {
    padding: 150px 0 80px;
    background: linear-gradient(to bottom, #000000, #111111);
    text-align: center;
    position: relative;
    z-index: 10;
}

.page-title {
    font-size: 3.5rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(223, 255, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    color: #888;
}

.support-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.support-card {
    background: #1a1a1a;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #333;
    flex: 1;
    max-width: 400px;
    transition: transform 0.3s;
}

.support-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
}

.support-card i {
    font-size: 4rem;
    color: var(--color-accent);
    margin-bottom: 30px;
    display: block;
}

.support-card h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.support-id {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    background: #333;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    display: inline-block;
}

.support-desc {
    color: #888;
    margin-bottom: 30px;
}

.faq-section {
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.faq-section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.brand-story-section {
    padding: 80px 0;
    color: #ccc;
    line-height: 1.8;
    position: relative;
    z-index: 10;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
    border-left: 5px solid var(--color-accent);
    padding-left: 20px;
}

.story-highlight {
    background: rgba(223, 255, 0, 0.05);
    border: 1px solid var(--color-accent);
    padding: 40px;
    margin: 40px 0;
    border-radius: 10px;
}

.story-highlight h3 {
    color: var(--color-accent);
    font-size: 2rem;
    margin-bottom: 20px;
}

.story-values {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    gap: 20px;
}

.value-item {
    flex: 1;
    background: #1a1a1a;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-10px);
    background: #222;
}

.value-item i {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.value-item h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .sub-page-header {
        padding: 120px 0 50px;
    }

    .page-title {
        font-size: 2.2rem;
        word-break: keep-all;
    }

    .support-content {
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 30px;
    }

    .support-card {
        width: 100%;
        max-width: 100%;
        padding: 30px;
    }

    .story-content h2 {
        font-size: 1.8rem;
        word-break: keep-all;
    }

    .story-highlight {
        padding: 25px;
    }

    .story-values {
        flex-direction: column;
        gap: 20px;
    }

    .value-item {
        width: 100%;
        margin: 0 auto;
    }
}