/* CSS Variables */
:root {
    --primary-color: #F28B0C; /* Tangerine */
    --secondary-color: #D95204; /* Tenné (Tawny) */
    --surface: #D9BBA9; /* Dark Vanilla */
    --header-bg: #8C2703; /* Smokey Topaz */
    --text-dark: #400101; /* Dark Chocolate */
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(64, 1, 1, 0.08);
    --transition: all 0.3s ease;
    --purple: #6C63FF;
    --blue: #4D96FF;
    --red: #FF6B6B;
    --yellow: #FFD93D;
    --dark: #2C3E50;
    --light-gray: #E0E0E0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--surface);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--header-bg);
    color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.logo span {
    display: inline-block;
}

.logo:hover {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface);
    color: var(--text-dark);
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 1rem;
    min-width: 200px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0.5rem 0;
    list-style: none;
}

.dropdown-menu li a {
    color: var(--text-dark);
}

.dropdown-menu li a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 8rem 2rem 6rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cta-button:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--surface);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--header-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    color: var(--text-dark);
}

.feature-card:hover {
    transform: translateY(-5px);
    border: 2px solid var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Tools Section */
.tools {
    padding: 6rem 0;
    background: var(--surface);
}

.tools h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--header-bg);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border: 1px solid var(--header-bg);
}

.tool-card:hover {
    transform: translateY(-5px);
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 15px rgba(242, 139, 12, 0.15);
}

.tool-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--surface);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--header-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    color: var(--text-dark);
    border: 1px solid var(--header-bg);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--header-bg) 0%, var(--text-dark) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-column:hover h4::after {
    width: 100%;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-column ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-column ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo {
        align-items: center;
        text-align: center;
    }

    .footer-logo p {
        margin: 0 auto;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column ul li a::before {
        display: none;
    }

    .footer-column ul li a:hover {
        padding-left: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu Toggle for Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Privacy Policy Page Styles */
.privacy-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    color: var(--text-dark);
}

.privacy-section {
    margin-bottom: 2rem;
}

.privacy-section h2 {
    color: var(--header-bg);
    margin-bottom: 1rem;
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.last-updated {
    font-style: italic;
    color: var(--header-bg);
    opacity: 0.8;
    margin-top: 2rem;
    text-align: center;
}

/* Legal Content Styles (Privacy Policy & Terms & Conditions) */
.legal-content {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 40px;
}

.legal-content h1 {
    color: var(--header-bg);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-content .last-updated {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    color: var(--header-bg);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content .thank-you {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 3rem;
    font-size: 1.2rem;
}

/* Navigation Styles */
header {
    background-color: var(--header-bg);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

nav .logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

nav .logo span {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-top: 2px;
}

nav .logo:hover img {
    transform: scale(1.05);
}

nav .logo:hover span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
}

nav ul li a:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

/* Dropdown Styles */
.tools-dropdown {
    position: relative;
}

.tools-dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem;
    transform-origin: top center;
    z-index: 1000;
}

.tools-dropdown:hover .tools-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tools-dropdown-content a {
    color: var(--text-dark) !important;
    padding: 0.75rem 1.25rem;
    display: block;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0.25rem 0;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.tools-dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--primary-color);
    opacity: 0.1;
    transition: width 0.3s ease;
    z-index: -1;
}

.tools-dropdown-content a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.tools-dropdown-content a:hover::before {
    width: 100%;
}

/* Add a subtle arrow indicator */
.tools-dropdown > a::after {
    content: '▾';
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.tools-dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .tools-dropdown-content {
        position: static;
        transform: none;
        background: transparent;
        box-shadow: none;
        display: none;
        padding: 1rem 0;
    }

    .tools-dropdown.active .tools-dropdown-content {
        display: block;
    }

    .tools-dropdown-content a {
        color: var(--white) !important;
        padding: 0.5rem 0;
    }

    .tools-dropdown-content a:hover {
        background: transparent;
        transform: none;
    }

    .tools-dropdown-content a::before {
        display: none;
    }
}

/* About Page Styles */
.about-content {
    max-width: 1000px;
    margin: 120px auto 60px;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-content h1 {
    color: var(--header-bg);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.about-content section {
    margin-bottom: 3rem;
}

.about-content h2 {
    color: var(--header-bg);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content ul {
    list-style-type: none;
    margin-left: 1rem;
    margin-bottom: 1.5rem;
}

.about-content ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-content ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(242, 139, 12, 0.15);
}

.feature-card h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.commitment-list li {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-list a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-list a:hover {
    color: var(--secondary-color);
}

.about-quote {
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--header-bg);
    border-left: 4px solid var(--primary-color);
    background: var(--surface);
    border-radius: 0 12px 12px 0;
    max-width: 600px;
}

.about-quote footer {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--secondary-color);
}

/* About Section Styles */
.about {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(242, 139, 12, 0.05) 0%, rgba(217, 82, 4, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.about h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.8rem;
    color: var(--header-bg);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--text-dark);
    position: relative;
    padding: 0 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(242, 139, 12, 0.15);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(242, 139, 12, 0.1);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    background: var(--primary-color);
    color: var(--white);
}

.feature-text h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-text p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.about-audience {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding: 1rem 0;
}

.about-audience::before,
.about-audience::after {
    content: '•';
    color: var(--primary-color);
    margin: 0 1rem;
}

.about-quote {
    text-align: center;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--header-bg);
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid rgba(242, 139, 12, 0.1);
}

.about-quote::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }

    .about h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .about-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .about-quote {
        font-size: 1.3rem;
        padding: 2rem;
    }

    .feature-item {
        padding: 1.5rem;
    }
}

/* Decision Maker Styles */
.spinner-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.spinner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 2rem auto;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    box-shadow: 
        0 0 0 10px rgba(255, 255, 255, 0.1),
        0 0 0 20px rgba(255, 255, 255, 0.05),
        0 0 30px rgba(0, 0, 0, 0.1);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 
            0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.05),
            0 0 30px rgba(0, 0, 0, 0.1);
    }
    to {
        box-shadow: 
            0 0 0 10px rgba(242, 139, 12, 0.1),
            0 0 0 20px rgba(217, 82, 4, 0.05),
            0 0 40px rgba(242, 139, 12, 0.2);
    }
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    transition: transform 5s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    transform: rotate(0deg);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.wheel-center {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 20px rgba(242, 139, 12, 0.3);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
}

.spinner-pointer {
    position: absolute;
    width: 30px;
    height: 50px;
    background: linear-gradient(to bottom, var(--yellow), var(--primary-color));
    clip-path: polygon(0% 10%, 100% 10%, 50% 100%);
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.control-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.control-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.control-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.control-btn:hover::before {
    transform: translateX(100%);
}

.spin-btn {
    background: linear-gradient(135deg, var(--purple), #8B5CF6);
    color: var(--white);
}

.add-btn {
    background: linear-gradient(135deg, var(--blue), #3B82F6);
    color: var(--white);
}

.control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.result {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--purple);
    min-height: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.result.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 576px) {
    .wheel-container {
        width: 250px;
        height: 250px;
    }
}

/* Sparkle Burst Animation */
@keyframes sparkle {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0;
    }
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--yellow);
    border-radius: 50%;
    pointer-events: none;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
}

.sparkle::before {
    transform: rotate(45deg);
}

.sparkle::after {
    transform: rotate(-45deg);
}

.sparkle-burst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: 3;
}

.sparkle-burst .sparkle {
    position: absolute;
    top: 50%;
    left: 50%;
    animation: sparkle 1s ease-out forwards;
}

.sparkle-burst .sparkle:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg) translateY(-40px); }
.sparkle-burst .sparkle:nth-child(2) { transform: translate(-50%, -50%) rotate(45deg) translateY(-40px); }
.sparkle-burst .sparkle:nth-child(3) { transform: translate(-50%, -50%) rotate(90deg) translateY(-40px); }
.sparkle-burst .sparkle:nth-child(4) { transform: translate(-50%, -50%) rotate(135deg) translateY(-40px); }
.sparkle-burst .sparkle:nth-child(5) { transform: translate(-50%, -50%) rotate(180deg) translateY(-40px); }
.sparkle-burst .sparkle:nth-child(6) { transform: translate(-50%, -50%) rotate(225deg) translateY(-40px); }
.sparkle-burst .sparkle:nth-child(7) { transform: translate(-50%, -50%) rotate(270deg) translateY(-40px); }
.sparkle-burst .sparkle:nth-child(8) { transform: translate(-50%, -50%) rotate(315deg) translateY(-40px); }

.sparkle-burst .sparkle:nth-child(1) { animation-delay: 0s; }
.sparkle-burst .sparkle:nth-child(2) { animation-delay: 0.1s; }
.sparkle-burst .sparkle:nth-child(3) { animation-delay: 0.2s; }
.sparkle-burst .sparkle:nth-child(4) { animation-delay: 0.3s; }
.sparkle-burst .sparkle:nth-child(5) { animation-delay: 0.4s; }
.sparkle-burst .sparkle:nth-child(6) { animation-delay: 0.5s; }
.sparkle-burst .sparkle:nth-child(7) { animation-delay: 0.6s; }
.sparkle-burst .sparkle:nth-child(8) { animation-delay: 0.7s; }

/* Options Container Styles */
.options-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.options-container:hover {
    box-shadow: 0 6px 20px rgba(242, 139, 12, 0.1);
}

.option-input {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.option-input:hover {
    transform: translateX(5px);
}

.option-input input {
    padding: 1rem 1.5rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    width: 60%;
    max-width: 300px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    -webkit-appearance: none;
    appearance: none;
}

.option-input input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(242, 139, 12, 0.1);
    background: #fff;
}

.option-input input::placeholder {
    color: #999;
    font-style: italic;
}

.option-input button {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--red), #FF4757);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.2);
    position: relative;
    overflow: hidden;
}

.option-input button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.option-input button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.3);
}

.option-input button:hover::before {
    transform: translateX(100%);
}

.option-input button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(255, 107, 107, 0.2);
}

/* Control Buttons Styles */
.control-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    padding: 1rem;
    position: relative;
}

.control-buttons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.control-btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.control-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.spin-btn {
    background: linear-gradient(135deg, var(--purple), #8B5CF6);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.2);
}

.add-btn {
    background: linear-gradient(135deg, var(--blue), #3B82F6);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(77, 150, 255, 0.2);
}

.control-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.control-btn:hover::before {
    transform: translateX(100%);
}

.control-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Result Display Styles */
.result {
    margin-top: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--purple);
    min-height: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(108, 99, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(139, 92, 246, 0.05));
}

.result.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 576px) {
    .option-input {
        flex-direction: column;
        align-items: center;
    }

    .option-input input {
        width: 100%;
        max-width: 100%;
    }

    .control-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .control-btn {
        width: 100%;
    }
}

/* Dice & Coin Simulator Styles */
.simulator-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.tool-section {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.tool-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.dice, .coin {
    width: 100px;
    height: 100px;
    margin: 2rem auto;
    position: relative;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.dice {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    padding: 10px;
    gap: 5px;
}

.dot {
    background: var(--dark);
    border-radius: 50%;
    margin: 2px;
}

.coin {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 4px solid #FFD700;
}

.rolling {
    animation: roll 0.5s linear;
}

.flipping {
    animation: flip 1s linear;
}

@keyframes roll {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes flip {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(720deg); }
}

.result {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--purple);
    min-height: 30px;
}

.roll-btn, .flip-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.roll-btn:hover, .flip-btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

/* Password Generator Styles */
.generator-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.password-display {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.password-input {
    flex-grow: 1;
    padding: 0.8rem;
    font-size: 1.2rem;
    border: 2px solid transparent;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    background: var(--white);
    transition: var(--transition);
}

.password-input:focus {
    outline: none;
    border-color: var(--purple);
}

.copy-btn {
    padding: 0.8rem 1.5rem;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.copy-btn:hover {
    background: var(--blue);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.option-box {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-wrapper {
    position: relative;
    display: inline-block;
}

.custom-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--purple);
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.custom-checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--white);
    transition: transform 0.2s ease;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked + .custom-checkbox {
    background: var(--purple);
}

input[type="checkbox"]:checked + .custom-checkbox::after {
    transform: translate(-50%, -50%) scale(1);
}

.option-label {
    font-weight: 500;
    cursor: pointer;
}

.length-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.length-slider {
    flex-grow: 1;
    height: 8px;
    -webkit-appearance: none;
    background: var(--light-gray);
    border-radius: 4px;
    outline: none;
}

.length-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--purple);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.length-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.length-number {
    width: 60px;
    padding: 0.5rem;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.generate-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.generate-btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.strength-meter {
    margin: 2rem 0;
    text-align: center;
}

.strength-bars {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.strength-bar {
    width: 50px;
    height: 6px;
    background: var(--light-gray);
    border-radius: 3px;
    transition: var(--transition);
}

.strength-bar.weak { background: #ff4444; }
.strength-bar.medium { background: #ffbb33; }
.strength-bar.strong { background: #00C851; }

.tooltip {
    position: fixed;
    background: var(--dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

@media (max-width: 576px) {
    .password-display {
        flex-direction: column;
    }

    .copy-btn {
        width: 100%;
    }
}

/* Random Facts Styles */
.facts-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.fact-box {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
}

.fact-text {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.fact-text.fade-out {
    opacity: 0;
}

.fact-box::before {
    content: '💡';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    opacity: 0.2;
}

.next-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.next-btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.category-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--purple);
    border-radius: 25px;
    background: transparent;
    color: var(--purple);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.category-btn.active {
    background: var(--purple);
    color: var(--white);
}

.category-btn:hover {
    background: var(--purple);
    color: var(--white);
}

@media (max-width: 576px) {
    .fact-box {
        font-size: 1rem;
        padding: 1.5rem;
    }
}

/* Typing Speed Test Styles */
.typing-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.text-display {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    min-height: 150px;
}

.text-display span {
    position: relative;
}

.text-display span.correct {
    color: var(--purple);
}

.text-display span.incorrect {
    color: #ff4444;
    text-decoration: underline;
}

.text-display span.current {
    background-color: var(--yellow);
}

.input-area {
    margin-bottom: 2rem;
}

.typing-input {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.typing-input:focus {
    outline: none;
    border-color: var(--purple);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    text-align: center;
}

.stat-box {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
}

.stat-box h3 {
    color: var(--purple);
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 1.5rem;
    font-weight: 600;
}

.restart-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 2rem auto;
    padding: 1rem;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.restart-btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

/* Responsive Base Styles */
@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }
    
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 14px;
    }
    
    .container {
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 13px;
    }
    
    .container {
        max-width: 540px;
    }
    
    .nav-container {
        padding: 0.5rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--header-bg);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--white);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    nav ul {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--header-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 2rem;
    }

    nav ul.active {
        display: flex;
        right: 0;
    }

    nav ul li {
        margin: 1rem 0;
    }

    .tools-dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        display: none;
        padding: 1rem 0;
    }

    .tools-dropdown-content a {
        color: var(--white) !important;
        padding: 0.5rem 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero {
        padding: 6rem 1rem 4rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .features-grid,
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card,
    .tool-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 12px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
    }
    
    .feature-card,
    .tool-card {
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Responsive Navigation */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive Tables */
table {
    width: 100%;
    overflow-x: auto;
    display: block;
}

/* Responsive Forms */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    width: 100%;
    max-width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
}

/* Responsive Grids */
.grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Responsive Typography */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 2rem); }
p { font-size: clamp(1rem, 2vw, 1.2rem); }

/* Responsive Spacing */
.section {
    padding: clamp(2rem, 5vw, 6rem) 0;
}

/* Responsive Cards */
.card {
    padding: clamp(1rem, 3vw, 2rem);
}

/* Responsive Buttons */
.button {
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Responsive Margins and Padding */
.m-1 { margin: clamp(0.5rem, 1vw, 1rem); }
.m-2 { margin: clamp(1rem, 2vw, 2rem); }
.p-1 { padding: clamp(0.5rem, 1vw, 1rem); }
.p-2 { padding: clamp(1rem, 2vw, 2rem); }

/* Responsive Flexbox */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 2rem);
}

/* Responsive Tool Sections */
.tool-section {
    padding: clamp(1rem, 3vw, 2rem);
}

/* Responsive Form Elements */
.form-group {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

/* Responsive Modal/Dialog */
.modal {
    width: min(90%, 600px);
    margin: clamp(1rem, 5vh, 2rem) auto;
    padding: clamp(1rem, 3vw, 2rem);
}

/* Responsive Navigation Dropdown */
.dropdown-menu {
    width: min(90%, 300px);
}

/* Responsive Footer */
.footer {
    padding: clamp(2rem, 5vw, 4rem) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}

/* Responsive Hero Section */
.hero {
    min-height: clamp(300px, 60vh, 500px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(2rem, 5vw, 4rem) 1rem;
}

/* Responsive Features Section */
.features {
    padding: clamp(2rem, 5vw, 6rem) 0;
}

.feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Responsive Tools Section */
.tools {
    padding: clamp(2rem, 5vw, 6rem) 0;
}

.tool-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Responsive FAQ Section */
.faq-item {
    padding: clamp(1rem, 2vw, 1.5rem);
}

/* Contact Us Section Styles */

.contact-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-form {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--purple);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.contact-info {
    padding: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: var(--purple);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item p {
    color: var(--dark);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-2px);
}

.success-message {
    display: none;
    padding: 1rem;
    background: #4CAF50;
    color: white;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 576px) {
    .contact-container {
        padding: 1rem;
    }

    .contact-form,
    .contact-info {
        padding: 1rem;
    }
}

/* Responsive Contact Form */
.contact-form {
    max-width: min(90%, 600px);
    margin: 0 auto;
}

/* Responsive About Section */
.about-content {
    max-width: min(90%, 800px);
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem);
}

/* Responsive Privacy Policy and Terms */
.legal-content {
    max-width: min(90%, 800px);
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem);
}

/* Responsive Decision Maker */
.decision-maker {
    max-width: min(90%, 600px);
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem);
}

/* Responsive Dice and Coin */
.dice, .coin {
    width: clamp(100px, 30vw, 200px);
    height: clamp(100px, 30vw, 200px);
}

/* Responsive Password Generator */
.password-generator {
    max-width: min(90%, 600px);
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem);
}

/* Responsive Random Facts */
.facts-container {
    max-width: min(90%, 800px);
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem);
}

/* Responsive Typing Speed Test */
.typing-container {
    max-width: min(90%, 800px);
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem);
}


/* Typing Test Information Section Styles */
.typing-info {
    padding: 4rem 0;
    background: var(--surface);
}

.info-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(64, 1, 1, 0.12);
}

.info-card h2 {
    color: var(--header-bg);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.info-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.info-card h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content {
    color: var(--text-dark);
}

.info-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.info-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.info-content ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step {
    background: rgba(242, 139, 12, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(217, 82, 4, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.metric:hover {
    transform: translateY(-3px);
    background: rgba(217, 82, 4, 0.15);
}

.metric h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Benchmarks Table */
.benchmarks-table {
    overflow-x: auto;
}

.benchmarks-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.benchmarks-table th,
.benchmarks-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.benchmarks-table th {
    background: var(--header-bg);
    color: var(--white);
    font-weight: 600;
}

.benchmarks-table tr:nth-child(even) {
    background: rgba(242, 139, 12, 0.05);
}

.benchmarks-table tr:hover {
    background: rgba(242, 139, 12, 0.1);
}

.note {
    font-style: italic;
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature {
    background: rgba(108, 99, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-3px);
    background: rgba(108, 99, 255, 0.15);
}

/* Improvement Content */
.improvement-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.practice-section,
.routine-section {
    background: rgba(77, 150, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit {
    background: rgba(255, 107, 107, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.benefit:hover {
    transform: translateY(-3px);
    background: rgba(255, 107, 107, 0.15);
}

/* CTA Card */
.cta-card {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.cta-card h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content {
    margin-top: 2rem;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tip {
    font-style: italic;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .typing-info {
        padding: 2rem 0;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card h2 {
        font-size: 1.75rem;
    }

    .info-card h3 {
        font-size: 1.35rem;
    }

    .process-steps,
    .metrics-grid,
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .improvement-content {
        grid-template-columns: 1fr;
    }

    .benchmarks-table {
        font-size: 0.9rem;
    }

    .cta-card h3 {
        font-size: 1.75rem;
    }

    .cta-text {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .info-card {
        padding: 1rem;
    }

    .info-card h2 {
        font-size: 1.5rem;
    }

    .info-card h3 {
        font-size: 1.25rem;
    }

    .step,
    .metric,
    .feature,
    .benefit {
        padding: 1rem;
    }

    .benchmarks-table th,
    .benchmarks-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

/* Typing FAQ Section Styles */
.typing-faq {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(242, 139, 12, 0.05) 0%, rgba(217, 82, 4, 0.05) 100%);
    position: relative;
}

.typing-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.faq-card h2 {
    color: var(--header-bg);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.faq-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.75rem;
    background: rgba(242, 139, 12, 0.05);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(242, 139, 12, 0.1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    background: rgba(242, 139, 12, 0.1);
    box-shadow: 0 5px 15px rgba(242, 139, 12, 0.1);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item h3::before {
    content: 'Q:';
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item ul {
    list-style: none;
    margin: 1rem 0 1rem 1.5rem;
}

.faq-item ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.faq-item ul li::before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.faq-item:hover ul li::before {
    transform: translateX(5px);
}

.speed-levels {
    background: rgba(108, 99, 255, 0.08);
    padding: 1.75rem;
    border-radius: 12px;
    margin-top: 1.25rem;
    border: 1px solid rgba(108, 99, 255, 0.2);
}

.speed-levels li {
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.speed-levels li:hover {
    transform: translateX(5px);
}

.speed-levels li:last-child {
    margin-bottom: 0;
}

.speed-levels strong {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    min-width: 100px;
}

.faq-cta {
    text-align: center;
    margin-top: 3.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.faq-cta:hover::before {
    transform: translateX(100%);
}

.faq-cta h3 {
    color: #400101;
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.faq-cta h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.faq-cta:hover h3::after {
    transform: scaleX(1);
    transform-origin: left;
}

.faq-cta p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* Responsive FAQ Styles */
@media (max-width: 768px) {
    .typing-faq {
        padding: 2.5rem 0;
    }

    .faq-card {
        padding: 2rem;
        margin: 0 20px;
    }

    .faq-card h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.25rem;
    }

    .faq-item p {
        font-size: 1rem;
    }

    .speed-levels {
        padding: 1.5rem;
    }

    .speed-levels li {
        font-size: 1rem;
        padding: 0.5rem;
    }

    .faq-cta {
        padding: 2rem;
        margin-top: 2.5rem;
    }

    .faq-cta h3 {
        font-size: 1.6rem;
    }

    .faq-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .typing-faq {
        padding: 2rem 0;
    }

    .faq-card {
        padding: 1.5rem;
        margin: 0 15px;
    }

    .faq-card h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.95rem;
    }

    .speed-levels {
        padding: 1.25rem;
    }

    .speed-levels li {
        font-size: 0.95rem;
    }

    .faq-cta {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .faq-cta h3 {
        font-size: 1.4rem;
    }

    .faq-cta p {
        font-size: 1rem;
    }
}

/* Random Facts Generator Styles */
.facts-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.facts-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 139, 12, 0.15);
}

.category-btn:hover::before {
    transform: translateX(100%);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(242, 139, 12, 0.2);
}

.fact-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(242, 139, 12, 0.1);
    transition: all 0.3s ease;
}

.fact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(242, 139, 12, 0.15);
}

.fact-box::before {
    content: '💡';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.fact-text {
    font-size: 1.4rem;
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.fact-text.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.next-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    margin: 0 auto;
    min-width: 250px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(242, 139, 12, 0.2);
}

.next-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.next-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 139, 12, 0.3);
}

.next-btn:hover::before {
    transform: translateX(100%);
}

.next-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(242, 139, 12, 0.2);
}

@media (max-width: 768px) {
    .facts-container {
        padding: 1.5rem;
        margin: 1rem;
    }

    .fact-box {
        padding: 2rem 1.5rem;
        min-height: 180px;
    }

    .fact-text {
        font-size: 1.2rem;
    }

    .category-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .category-btn {
        width: 100%;
    }

    .next-btn {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* Random Facts Generator Styles */
.tool-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.tool-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.tool-title {
    font-size: 2.5rem;
    color: var(--header-bg);
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tool-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.8;
    font-weight: 500;
}

@media (max-width: 768px) {
    .tool-header {
        margin-bottom: 2rem;
    }

    .tool-title {
        font-size: 2rem;
    }

    .tool-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .tool-header {
        margin-bottom: 1.5rem;
    }

    .tool-title {
        font-size: 1.8rem;
    }

    .tool-subtitle {
        font-size: 1rem;
    }
}

/* Random Facts Info Content Styles */
.facts-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.facts-content section {
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facts-content section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(242, 139, 12, 0.1);
}

.facts-content section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.facts-content h2 {
    color: var(--header-bg);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.facts-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.facts-content h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.facts-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* List Styles */
.facts-why ul,
.facts-how ol,
.facts-creative ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 1rem;
}

.facts-why li,
.facts-how li,
.facts-creative li {
    background: rgba(242, 139, 12, 0.05);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    color: #4a5568;
    position: relative;
    padding-left: 3rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(242, 139, 12, 0.1);
}

.facts-why li:hover,
.facts-how li:hover,
.facts-creative li:hover {
    transform: translateX(10px);
    background: rgba(242, 139, 12, 0.1);
}

.facts-why li::before,
.facts-creative li::before {
    content: "•";
    position: absolute;
    left: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.facts-how ol {
    counter-reset: item;
}

.facts-how li {
    counter-increment: item;
}

.facts-how li::before {
    content: counter(item) ".";
    position: absolute;
    left: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Examples Section */
.facts-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.fact-category {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(242, 139, 12, 0.1);
}

.fact-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(242, 139, 12, 0.15);
}

.fact-category h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fact-category ul {
    list-style: none;
    padding-left: 0;
}

.fact-category li {
    background: rgba(242, 139, 12, 0.05);
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #4a5568;
    position: relative;
    padding-left: 2.5rem;
    transition: transform 0.3s ease;
    border: 1px solid rgba(242, 139, 12, 0.1);
}

.fact-category li:hover {
    transform: translateX(10px);
    background: rgba(242, 139, 12, 0.1);
}

.fact-category li::before {
    content: "💡";
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(242, 139, 12, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(242, 139, 12, 0.15);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.benefit-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.benefit-card ul {
    list-style: none;
    padding-left: 0;
}

.benefit-card li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
    font-size: 1.1rem;
}

.benefit-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.benefit-card li:hover::before {
    transform: translateX(5px);
}

/* Features List */
.features-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.features-list li {
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(242, 139, 12, 0.1);
}

.features-list li:hover {
    transform: translateX(10px);
    background: rgba(242, 139, 12, 0.05);
}

.features-list li::before {
    content: "✅";
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .facts-content section {
        padding: 2rem;
        margin-bottom: 3rem;
    }

    .facts-content h2 {
        font-size: 1.8rem;
    }

    .facts-content h3 {
        font-size: 1.3rem;
    }

    .fact-category,
    .benefit-card {
        padding: 1.5rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .facts-content section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .facts-content h2 {
        font-size: 1.6rem;
    }

    .facts-content h3 {
        font-size: 1.2rem;
    }

    .fact-category li,
    .benefit-card li,
    .features-list li {
        font-size: 1rem;
    }
}

/* How to Use Section Styles */
.how-to-use {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.how-to-use::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.how-to-use h2 {
    color: var(--header-bg);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.how-to-use h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.how-to-use > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 3rem;
}

/* Steps Container */
.steps-container {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    background: rgba(242, 139, 12, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(242, 139, 12, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(242, 139, 12, 0.1);
}

.step-item h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-item p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.category-list li {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #4a5568;
    transition: transform 0.3s ease;
    border: 1px solid rgba(242, 139, 12, 0.1);
}

.category-list li:hover {
    transform: translateX(10px);
    background: rgba(242, 139, 12, 0.05);
}

.category-icon {
    font-size: 1.5rem;
}

/* Enjoy List */
.enjoy-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.enjoy-list li {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #4a5568;
    transition: transform 0.3s ease;
    border: 1px solid rgba(242, 139, 12, 0.1);
}

.enjoy-list li:hover {
    transform: translateX(10px);
    background: rgba(242, 139, 12, 0.05);
}

.enjoy-icon {
    font-size: 1.5rem;
}

/* Example Output */
.example-output {
    margin: 3rem 0;
}

.example-output h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.example-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(242, 139, 12, 0.1);
}

.example-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 1.5rem;
}

.category-badge {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.example-content {
    padding: 2rem;
}

.fact-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

.fact-quote::before,
.fact-quote::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.fact-quote::before {
    top: -1rem;
    left: -0.5rem;
}

.fact-quote::after {
    bottom: -1.5rem;
    right: -0.5rem;
}

/* Benefits Section */
.benefits-section {
    margin: 3rem 0;
}

.benefits-section h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.benefits-list li {
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #4a5568;
    transition: transform 0.3s ease;
    border: 1px solid rgba(242, 139, 12, 0.1);
}

.benefits-list li:hover {
    transform: translateX(10px);
    background: rgba(242, 139, 12, 0.05);
}

.check-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(242, 139, 12, 0.1), rgba(217, 82, 4, 0.1));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-section:hover::before {
    transform: translateX(100%);
}

.cta-section h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.cta-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.cta-section:hover h3::after {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .how-to-use {
        padding: 2rem;
        margin-top: 3rem;
    }

    .how-to-use h2 {
        font-size: 1.8rem;
    }

    .step-item {
        padding: 1.5rem;
    }

    .step-item h3 {
        font-size: 1.3rem;
    }

    .example-content {
        padding: 1.5rem;
    }

    .fact-quote {
        font-size: 1.1rem;
    }

    .cta-section {
        padding: 2rem;
    }

    .cta-section h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .how-to-use {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .how-to-use h2 {
        font-size: 1.6rem;
    }

    .step-item {
        padding: 1.2rem;
    }

    .step-item h3 {
        font-size: 1.2rem;
    }

    .category-list li,
    .enjoy-list li,
    .benefits-list li {
        font-size: 1rem;
        padding: 1rem;
    }

    .example-content {
        padding: 1.2rem;
    }

    .fact-quote {
        font-size: 1rem;
    }

    .cta-section {
        padding: 1.5rem;
    }

    .cta-section h3 {
        font-size: 1.4rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }
}

/* Random Facts FAQ Styles */
.facts-faq {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.facts-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.facts-faq h2 {
    color: var(--header-bg);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.facts-faq h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.facts-faq .faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.facts-faq .faq-item {
    background: rgba(242, 139, 12, 0.05);
    padding: 1.75rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(242, 139, 12, 0.1);
    position: relative;
    overflow: hidden;
}

.facts-faq .faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.facts-faq .faq-item:hover {
    transform: translateX(10px);
    background: rgba(242, 139, 12, 0.1);
    box-shadow: 0 5px 15px rgba(242, 139, 12, 0.1);
}

.facts-faq .faq-item:hover::before {
    opacity: 1;
}

.facts-faq .faq-item h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.facts-faq .faq-item h3::before {
    content: 'Q:';
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.facts-faq .faq-item p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.facts-faq .faq-item ul {
    list-style: none;
    margin: 1rem 0 1rem 1.5rem;
}

.facts-faq .faq-item ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.facts-faq .faq-item ul li::before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.facts-faq .faq-item:hover ul li::before {
    transform: translateX(5px);
}

.facts-faq .faq-cta {
    text-align: center;
    margin-top: 3.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.facts-faq .faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.facts-faq .faq-cta:hover::before {
    transform: translateX(100%);
}

.facts-faq .faq-cta h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.facts-faq .faq-cta h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.facts-faq .faq-cta:hover h3::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 768px) {
    .facts-faq {
        padding: 2rem;
        margin: 3rem 0;
    }

    .facts-faq h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .facts-faq .faq-item {
        padding: 1.5rem;
    }

    .facts-faq .faq-item h3 {
        font-size: 1.25rem;
    }

    .facts-faq .faq-item p {
        font-size: 1rem;
    }

    .facts-faq .faq-cta {
        padding: 2rem;
        margin-top: 2.5rem;
    }

    .facts-faq .faq-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .facts-faq {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .facts-faq h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .facts-faq .faq-item {
        padding: 1.25rem;
    }

    .facts-faq .faq-item h3 {
        font-size: 1.1rem;
    }

    .facts-faq .faq-item p {
        font-size: 0.95rem;
    }

    .facts-faq .faq-cta {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .facts-faq .faq-cta h3 {
        font-size: 1.4rem;
    }
}

/* Password Generator Content Styles */
.password-why {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.password-why h2 {
    color: var(--header-bg);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.password-why h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.password-why p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.password-why ul {
    list-style: none;
    margin: 1.5rem 0;
}

.password-why ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.password-why ul li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.password-control {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.password-control h2 {
    color: var(--header-bg);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.control-section {
    margin-bottom: 3rem;
}

.control-section h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.control-section h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.length-info ul,
.character-types ul {
    list-style: none;
    margin: 1rem 0;
}

.length-info ul li,
.character-types ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.length-info ul li::before,
.character-types ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.strength-analysis {
    background: rgba(242, 139, 12, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.strength-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.strength-level {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.strength-level:hover {
    transform: translateY(-5px);
}

.strength-level h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.strength-level ul {
    list-style: none;
    margin: 0;
}

.strength-level ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.strength-level ul li::before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.generation-features ul {
    list-style: none;
    margin: 1.5rem 0;
}

.generation-features ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.generation-features ul li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.security-features {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.features-grid li {
    background: rgba(242, 139, 12, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    transition: transform 0.3s ease;
}

.features-grid li:hover {
    transform: translateY(-5px);
}

.password-examples {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.bad-examples,
.good-examples {
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.bad-examples {
    background: rgba(255, 68, 68, 0.05);
}

.good-examples {
    background: rgba(0, 200, 81, 0.05);
}

.bad-examples:hover,
.good-examples:hover {
    transform: translateY(-5px);
}

.bad-examples h3,
.good-examples h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bad-examples ul,
.good-examples ul {
    list-style: none;
    margin: 0;
}

.bad-examples ul li,
.good-examples ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.bad-examples ul li::before,
.good-examples ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.target-audience {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.audience-item {
    background: rgba(242, 139, 12, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.audience-item h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.audience-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

.best-practices {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.practices-list {
    list-style: none;
    margin: 2rem 0;
}

.practices-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1.1rem;
}

.practices-list li::before {
    content: "🔒";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-section:hover::before {
    transform: translateX(100%);
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.cta-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.pro-tip {
    font-size: 1.1rem;
    opacity: 0.8;
}

.seo-info {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.seo-keywords {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.seo-keywords li {
    background: rgba(242, 139, 12, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.seo-keywords li:hover {
    transform: translateY(-3px);
}

.privacy-note {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-top: 2rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .password-why,
    .password-control,
    .security-features,
    .password-examples,
    .target-audience,
    .best-practices,
    .cta-section,
    .seo-info {
        padding: 2rem;
        margin: 3rem 0;
    }

    .password-why h2,
    .password-control h2,
    .security-features h2,
    .password-examples h2,
    .target-audience h2,
    .best-practices h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .strength-levels {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .audience-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .cta-section {
        padding: 3rem 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .password-why,
    .password-control,
    .security-features,
    .password-examples,
    .target-audience,
    .best-practices,
    .cta-section,
    .seo-info {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .password-why h2,
    .password-control h2,
    .security-features h2,
    .password-examples h2,
    .target-audience h2,
    .best-practices h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }

    .control-section h3 {
        font-size: 1.3rem;
    }

    .control-section h4 {
        font-size: 1.1rem;
    }

    .strength-level h4 {
        font-size: 1.1rem;
    }

    .audience-item {
        padding: 1.5rem;
    }

    .audience-icon {
        font-size: 2rem;
    }

    .audience-item h3 {
        font-size: 1.1rem;
    }

    .practices-list li {
        font-size: 1rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .pro-tip {
        font-size: 0.95rem;
    }

    .seo-keywords {
        flex-direction: column;
        align-items: center;
    }

    .seo-keywords li {
        width: 100%;
        text-align: center;
    }
}

/* Enhanced Password Generator Styles */
.generator-container {
    background: linear-gradient(145deg, #ffffff, #f5f7fa);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.generator-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px 4px 0 0;
}

.generator-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.password-display {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.password-display:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
}

.password-display input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    padding: 0.5rem;
}

.password-display input:focus {
    outline: none;
}

.copy-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.copy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.copy-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.copy-btn:hover::before {
    left: 100%;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.option-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.option-box:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.custom-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

input[type="checkbox"]:checked + .custom-checkbox {
    background: var(--primary-color);
}

input[type="checkbox"]:checked + .custom-checkbox::after {
    transform: translate(-50%, -50%) scale(1);
}

.option-label {
    font-weight: 500;
    color: var(--text-dark);
}

.length-control {
    margin-bottom: 2rem;
}

.length-control label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
}

.length-slider {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

.length-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.length-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: var(--secondary-color);
}

.strength-meter {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.strength-bars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.strength-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.strength-bar.weak { 
    background: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

.strength-bar.medium { 
    background: #ffbb33;
    box-shadow: 0 0 10px rgba(255, 187, 51, 0.3);
}

.strength-bar.strong { 
    background: #00C851;
    box-shadow: 0 0 10px rgba(0, 200, 81, 0.3);
}

#strengthText {
    font-weight: 600;
    color: var(--text-dark);
}

.generate-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.generate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.generate-btn:hover::before {
    left: 100%;
}

.generate-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .generator-container {
        padding: 1.5rem;
        margin: 1rem auto;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .password-display {
        flex-direction: column;
    }

    .copy-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .generator-container {
        padding: 1rem;
    }

    .password-display input {
        font-size: 1rem;
    }

    .option-box {
        padding: 0.75rem;
    }

    .custom-checkbox {
        width: 20px;
        height: 20px;
    }
}

/* Password Generator FAQ Styles */
.password-faq {
    margin: 4rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.password-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.password-faq h2 {
    font-size: 2rem;
    color: #400101;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.password-faq h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.password-faq .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.password-faq .faq-item {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.password-faq .faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.password-faq .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.password-faq .faq-item:hover::before {
    opacity: 1;
}

.password-faq .faq-item h3 {
    color: #400101;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.password-faq .faq-item h3::before {
    content: '🔒';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}

.password-faq .faq-item p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.password-faq .faq-item ul {
    list-style: none;
    padding-left: 1.5rem;
}

.password-faq .faq-item ul li {
    color: var(--gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.password-faq .faq-item ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.password-faq .faq-item:hover ul li::before {
    transform: translateX(5px);
}

.password-faq .faq-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0.5rem;
    color: #400101;
    position: relative;
    overflow: hidden;
}

.password-faq .faq-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.password-faq .faq-cta:hover::before {
    animation: shine 1.5s infinite;
}

.password-faq .faq-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.password-faq .faq-cta h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.password-faq .faq-cta:hover h3::after {
    transform: scaleX(1);
    transform-origin: left;
}

.password-faq .faq-cta p {
    font-size: 1rem;
    opacity: 0.9;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

@media (max-width: 768px) {
    .password-faq {
        padding: 1.5rem;
        margin: 3rem 0;
    }

    .password-faq h2 {
        font-size: 1.8rem;
    }

    .password-faq .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .password-faq .faq-item {
        padding: 1.2rem;
    }

    .password-faq .faq-item h3 {
        font-size: 1.1rem;
    }

    .password-faq .faq-cta {
        padding: 1.5rem;
    }

    .password-faq .faq-cta h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .password-faq {
        padding: 1rem;
        margin: 2rem 0;
    }

    .password-faq h2 {
        font-size: 1.5rem;
    }

    .password-faq .faq-item {
        padding: 1rem;
    }

    .password-faq .faq-item h3 {
        font-size: 1rem;
    }

    .password-faq .faq-item ul li {
        font-size: 0.9rem;
    }

    .password-faq .faq-cta {
        padding: 1.2rem;
    }

    .password-faq .faq-cta h3 {
        font-size: 1.2rem;
    }

    .password-faq .faq-cta p {
        font-size: 0.9rem;
    }
}

/* Decision Maker Content Styles */
.decision-maker-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.decision-maker-content section {
    margin-bottom: 4rem;
}

.decision-maker-content h2 {
    color: var(--header-bg);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.decision-maker-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.step-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-card ul {
    list-style: none;
    padding: 0;
}

.step-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-card ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.audience-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.audience-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.audience-card ul {
    list-style: none;
    padding: 0;
}

.audience-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.audience-card ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Examples Grid */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.example-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.example-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 2rem;
    border-radius: 12px;
    color: var(--white);
    margin-top: 4rem;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta h2::after {
    background: var(--white);
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-button-container {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .decision-maker-content section {
        margin-bottom: 3rem;
    }

    .decision-maker-content h2 {
        font-size: 1.8rem;
    }

    .steps-grid,
    .benefits-grid,
    .audience-grid,
    .examples-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card,
    .benefit-card,
    .audience-card,
    .example-card,
    .feature-card {
        padding: 1.5rem;
    }

    .cta {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .decision-maker-content h2 {
        font-size: 1.5rem;
    }

    .step-card h3,
    .audience-card h3 {
        font-size: 1.2rem;
    }

    .benefit-icon,
    .example-icon {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Decision Maker FAQ Styles */
.decision-faq {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.decision-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
}

.decision-faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-item ul {
    list-style: none;
    padding-left: 0;
}

.faq-item ul li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.faq-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.faq-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    color: var(--white);
    margin-top: 2rem;
}

.faq-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.faq-cta .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive FAQ Styles */
@media (max-width: 768px) {
    .decision-faq {
        padding: 3rem 0;
    }

    .decision-faq h2 {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-cta {
        padding: 2rem;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .decision-faq h2 {
        font-size: 1.75rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .faq-cta {
        padding: 1.5rem;
    }

    .faq-cta h3 {
        font-size: 1.25rem;
    }

    .faq-cta p {
        font-size: 1rem;
    }
}

/* Dice & Coin Content Styles */
.tool-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.tool-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tool-content .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 3rem;
    text-align: center;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.content-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.content-section p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.content-section ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-section ul li {
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.content-section ul li::before {
    content: '•';
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checklist li::before {
    content: none;
}

.game-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.game-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 300px;
}

.game-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Dice Styles */
.dice {
    width: 100px;
    height: 100px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s ease;
    margin: 2rem auto;
}

.dice.rolling {
    animation: rolling 1s ease;
}

.dice-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border: 2px solid #333;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.dot {
    width: 15px;
    height: 15px;
    background: #333;
    border-radius: 50%;
    position: absolute;
}

/* Coin Styles */
.coin {
    width: 100px;
    height: 100px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s ease;
    margin: 2rem auto;
}

.coin.flipping {
    animation: flipping 1s ease;
}

.coin-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    backface-visibility: hidden;
}

.coin-face.heads {
    background: linear-gradient(45deg, #FFD700, #FFA500);
}

.coin-face.tails {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: rotateY(180deg);
}

.result {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
    min-height: 2rem;
    color: var(--primary-color);
}

.roll-btn, .flip-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roll-btn:hover, .flip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes rolling {
    0% { transform: rotateX(0) rotateY(0) rotateZ(0); }
    100% { transform: rotateX(720deg) rotateY(720deg) rotateZ(720deg); }
}

@keyframes flipping {
    0% { transform: rotateY(0); }
    100% { transform: rotateY(1800deg); }
}

@media (max-width: 768px) {
    .game-container {
        gap: 2rem;
    }

    .game-section {
        min-width: 250px;
    }
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-card h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.coming-soon {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.coming-soon h5 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Functionality Grid */
.functionality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.functionality-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.functionality-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.advantage-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.application-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.application-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.application-card p {
    font-style: italic;
    color: var(--text-color);
}

/* Future List */
.future-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.future-list li {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 15px;
    color: var(--white);
}

.cta-section h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-section h3::after {
    background: var(--white);
    left: 50%;
    transform: translateX(-50%);
}

.cta-list {
    display: inline-block;
    text-align: left;
    margin: 1.5rem 0;
}

.cta-list li {
    color: var(--white);
}

.cta-list li::before {
    color: var(--white);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-footer {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tool-content h2 {
        font-size: 2rem;
    }

    .content-section h3 {
        font-size: 1.75rem;
    }

    .feature-grid,
    .functionality-grid,
    .advantages-grid,
    .applications-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tool-content {
        padding: 1rem;
    }

    .content-section {
        margin-bottom: 2rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }
}

/* Functionality Grid Hover Effects */
.functionality-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.functionality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.functionality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.functionality-card:hover::before {
    opacity: 0.05;
}

.functionality-card h4,
.functionality-card ul {
    position: relative;
    z-index: 2;
}

.functionality-card:hover h4 {
    color: var(--primary-color);
}

/* Advantages Grid Hover Effects */
.advantage-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.advantage-card:hover h4 {
    color: var(--primary-color);
}

.advantage-card ul li {
    transition: transform 0.3s ease;
}

.advantage-card:hover ul li {
    transform: translateX(5px);
}

/* Applications Grid Hover Effects */
.application-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.application-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.application-card:hover::after {
    width: 100%;
}

.application-card:hover h4 {
    color: var(--primary-color);
}

.application-card:hover p {
    color: var(--text-color);
}

/* Future List Hover Effects */
.future-list li {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.future-list li::before {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.future-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    padding-right: 2rem;
}

.future-list li:hover::before {
    right: 10px;
    opacity: 1;
}

/* Dice & Coin FAQ Styles */
.dice-coin-faq {
    padding: 4rem 0;
    background: var(--surface);
}

.dice-coin-faq h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.dice-coin-faq h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.faq-item:hover h3 {
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-item ul {
    list-style: none;
    padding-left: 0;
}

.faq-item ul li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.faq-item:hover ul li {
    transform: translateX(5px);
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-cta:hover::before {
    opacity: 1;
}

.faq-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.faq-cta h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-cta:hover h3::after {
    transform: scaleX(1);
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-footer {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .dice-coin-faq h2 {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-cta {
        padding: 2rem 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .dice-coin-faq {
        padding: 2rem 0;
    }

    .dice-coin-faq h2 {
        font-size: 1.75rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }
}
