:root {
    --primary-color: #8b00ff;
    --primary-dark: #6a00cc;
    --primary-light: #a855f7;
    --secondary-color: #00d4ff;
    --accent-color: #ff00ea;
    --dark-bg: #0a0015;
    --darker-bg: #050008;
    --card-bg: rgba(139, 0, 255, 0.1);
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);
    --border-glow: rgba(139, 0, 255, 0.5);
    --gradient-main: linear-gradient(135deg, #1a0033 0%, #0a0015 50%, #150025 100%);
    --gradient-hero: linear-gradient(180deg, rgba(139, 0, 255, 0.3) 0%, rgba(10, 0, 21, 0.95) 100%);
    --gradient-button: linear-gradient(135deg, #8b00ff 0%, #ff00ea 100%);
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --shadow-glow: 0 0 40px rgba(139, 0, 255, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--dark-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 0, 21, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 0, 255, 0.2);
    transition: var(--transition-smooth);
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo-wrapper a {
    display: flex;
    align-items: center;
}
.logo-text{
  height: 75px;      
  width: auto;
  display: block;    
  object-fit: contain;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-item a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    transition: var(--transition-smooth);
}
.nav-item a:hover,
.nav-item.active a {
    color: var(--text-white);
    background: rgba(139, 0, 255, 0.15);
}
.mobile-menu-toggle {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    position: absolute;
    transition: var(--transition-smooth);
}
.hamburger {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hamburger::before {
    content: '';
    top: -8px;
    left: 0;
}
.hamburger::after {
    content: '';
    top: 8px;
    left: 0;
}
#hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 80px;
    position: relative;
    background: var(--gradient-main);
    overflow: hidden;
}
#hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(139, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 0, 234, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(139, 0, 255, 0.5);
}
.prize-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}
.amount-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}
.amount-value {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(255, 0, 234, 0.4));
}
.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}
.countdown-wrapper {
    margin-bottom: 2.5rem;
}
.countdown-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.time-block {
    background: rgba(139, 0, 255, 0.15);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 80px;
    backdrop-filter: blur(10px);
}
.time-value {
    display: block;
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}
.time-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}
.time-separator {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    opacity: 0.6;
}
.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.primary-btn {
    background: var(--gradient-button);
    color: var(--text-white);
    box-shadow: 
        0 4px 20px rgba(139, 0, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}
.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(139, 0, 255, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.15);
}
#packages-section {
    padding: 100px 2rem;
    background: var(--darker-bg);
    position: relative;
}
#packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}
.section-container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}
.section-description strong {
    color: var(--secondary-color);
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}
.package-card {
    background: var(--card-bg);
    border: 1px solid rgba(139, 0, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}
.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-button);
    opacity: 0;
    transition: var(--transition-smooth);
}
.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}
.package-card:hover::before {
    opacity: 1;
}
.package-card.featured,
.package-card.premium {
    border-color: var(--accent-color);
    background: rgba(255, 0, 234, 0.08);
}
.package-card.featured::before,
.package-card.premium::before {
    opacity: 1;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}
.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-button);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}
.package-header {
    margin-bottom: 1.5rem;
}
.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}
.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.package-price .spins {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.package-price .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}
.package-feature {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.package-btn {
    display: inline-block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--text-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}
.package-btn:hover {
    background: var(--gradient-button);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(139, 0, 255, 0.4);
}
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 0, 255, 0.2);
}
.trust-badge {
    opacity: 0.7;
    transition: var(--transition-smooth);
    max-width: 150px;
}
.trust-badge:hover {
    opacity: 1;
    transform: scale(1.05);
}
#main-footer {
    background: linear-gradient(180deg, var(--darker-bg) 0%, #030006 100%);
    padding: 4rem 2rem 2rem;
    position: relative;
}
#main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-section {
    padding: 1.5rem;
    background: rgba(139, 0, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(139, 0, 255, 0.15);
}
.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(139, 0, 255, 0.2);
}
.footer-section p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-light);
}
.footer-section strong {
    color: var(--text-white);
}
.footer-nav {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(139, 0, 255, 0.15);
    border-bottom: 1px solid rgba(139, 0, 255, 0.15);
    margin-bottom: 1.5rem;
}
.footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
}
.footer-menu li a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.5rem 0;
    display: block;
    transition: var(--transition-smooth);
}
.footer-menu li a:hover {
    color: var(--primary-light);
}
.footer-bottom {
    text-align: center;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}
@media (max-width: 992px) {
    .header-container {
        height: 70px;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 0, 21, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 0.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        border-bottom: 1px solid rgba(139, 0, 255, 0.2);
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-item a {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .mobile-menu-toggle.active .hamburger {
        background: transparent;
    }
    .mobile-menu-toggle.active .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }
    .mobile-menu-toggle.active .hamburger::after {
        top: 0;
        transform: rotate(-45deg);
    }
    #hero-section {
        padding: 100px 1.5rem 60px;
    }
    .time-block {
        padding: 0.75rem 1rem;
        min-width: 60px;
    }
    .time-separator {
        font-size: 1.5rem;
    }
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .hero-title {
        letter-spacing: 1px;
    }
    .countdown-timer {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .time-separator {
        display: none;
    }
    .time-block {
        min-width: 70px;
    }
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .trust-badges {
        gap: 2rem;
    }
    .trust-badge {
        max-width: 120px;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
}
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    .header-container {
        padding: 0 1rem;
    }
    .logo-text {
        font-size: 1.5rem;
    }
    #hero-section {
        padding: 90px 1rem 50px;
    }
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    #packages-section {
        padding: 60px 1rem;
    }
    .package-card {
        padding: 1.5rem;
    }
    .package-price .spins {
        font-size: 2.5rem;
    }
    #main-footer {
        padding: 3rem 1rem 1.5rem;
    }
}
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.time-separator {
    animation: pulse 1s ease-in-out infinite;
}
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
a:focus,
button:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}
::selection {
    background: var(--primary-color);
    color: var(--text-white);
}
.page-hero {
    padding: 160px 2rem 80px;
    background: var(--gradient-main);
    text-align: center;
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(139, 0, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 0, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.page-hero-content {
    position: relative;
    z-index: 2;
}
.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.content-section {
    padding: 80px 2rem;
    background: var(--darker-bg);
}
.content-container {
    max-width: 1000px;
    margin: 0 auto;
}
.content-container.narrow {
    max-width: 600px;
}
.content-card {
    background: var(--card-bg);
    border: 1px solid rgba(139, 0, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}
.content-card:hover {
    border-color: rgba(139, 0, 255, 0.4);
    box-shadow: 0 0 30px rgba(139, 0, 255, 0.1);
}
.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-button);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.card-icon svg {
    color: var(--text-white);
}
.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}
.content-card p {
    line-height: 1.8;
    color: var(--text-light);
}
.warning-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}
.warning-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
}
.warning-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}
.highlight-text {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 8px 8px 0;
    font-weight: 500;
    color: var(--secondary-color);
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}
.tool-item {
    background: rgba(139, 0, 255, 0.1);
    border: 1px solid rgba(139, 0, 255, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    transition: var(--transition-smooth);
}
.tool-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}
.tool-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}
.tool-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}
.form-card {
    background: var(--card-bg);
    border: 1px solid rgba(139, 0, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}
.form-intro {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}
.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 0, 255, 0.3);
    border-radius: 10px;
    color: var(--text-white);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(139, 0, 255, 0.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-btn {
    padding: 1rem 2rem;
    background: var(--gradient-button);
    border: none;
    border-radius: 50px;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 0.5rem;
}
.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 255, 0.4);
}
.form-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.form-footer a {
    color: var(--secondary-color);
    font-weight: 500;
}
.form-footer a:hover {
    color: var(--primary-light);
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.modal.active {
    display: flex;
}
.modal-content {
    background: var(--dark-bg);
    border: 1px solid rgba(139, 0, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    max-width: 400px;
    text-align: center;
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.modal-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.modal-icon.success {
    background: linear-gradient(135deg, #00d084 0%, #00b894 100%);
}
.modal-icon svg {
    color: var(--text-white);
}
.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}
.modal-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.modal-btn {
    padding: 0.875rem 2rem;
    background: var(--gradient-button);
    border: none;
    border-radius: 50px;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 255, 0.4);
}
.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 0, 255, 0.2);
}
.policy-meta {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.policy-card {
    padding: 2rem;
}
.cookie-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.cookie-option {
    background: rgba(139, 0, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
}
.cookie-option h4 {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}
.cookie-option p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}
@media (max-width: 768px) {
    .page-hero {
        padding: 140px 1.5rem 60px;
    }
    .content-section {
        padding: 60px 1.5rem;
    }
    .content-card,
    .form-card {
        padding: 1.5rem;
    }
    .tools-grid,
    .cookie-options {
        grid-template-columns: 1fr;
    }
    .modal-content {
        padding: 2rem;
    }
}
@media (max-width: 480px) {
    .page-hero {
        padding: 120px 1rem 50px;
    }
    .content-section {
        padding: 50px 1rem;
    }
    .content-card,
    .form-card {
        padding: 1.25rem;
        border-radius: 16px;
    }
    .card-icon {
        width: 60px;
        height: 60px;
    }
    .card-icon svg {
        width: 32px;
        height: 32px;
    }
}
.last-updated {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(138, 43, 226, 0.1);
    border-left: 4px solid #8a2be2;
    border-radius: 0 8px 8px 0;
}
.intro-text strong {
    color: #fff;
}
.terms-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.terms-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.terms-section h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #8a2be2, #ff6b6b);
    border-radius: 50%;
    flex-shrink: 0;
}
.terms-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 1rem;
}
.terms-section p:last-child {
    margin-bottom: 0;
}
.terms-section p strong {
    color: #fff;
}
.terms-section a {
    color: #a855f7;
    text-decoration: none;
    transition: color 0.3s ease;
}
.terms-section a:hover {
    color: #c084fc;
    text-decoration: underline;
}
.terms-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.terms-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #c0c0c0;
}
.terms-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6b6b;
    font-size: 0.9rem;
    font-weight: 700;
}
.license-info {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(75, 0, 130, 0.15));
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-top: 1rem;
}
.license-info p {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.license-info p:last-child {
    margin-bottom: 0;
}
.license-info p strong {
    color: #a855f7;
    min-width: 180px;
}
@media (max-width: 768px) {
    .intro-text {
        font-size: 1rem;
        padding: 1.2rem;
    }
    .terms-section h2 {
        font-size: 1.2rem;
    }
    .terms-section p,
    .terms-list li {
        font-size: 0.95rem;
    }
    .license-info {
        padding: 1.2rem;
    }
    .license-info p {
        flex-direction: column;
        gap: 0.2rem;
    }
    .license-info p strong {
        min-width: auto;
    }
}
@media (max-width: 480px) {
    .terms-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    .terms-section h2 {
        font-size: 1.1rem;
    }
    .intro-text {
        font-size: 0.95rem;
        padding: 1rem;
    }
    .terms-list li {
        padding-left: 1.5rem;
    }
}