:root {
    --color-bg: #0a0a0a;
    --color-surface: #121212;
    --color-surface-hover: #1e1e1e;
    --color-primary: #76b900;
    /* NVIDIA Green-ish */
    --color-primary-hover: #5a8f00;
    --color-text-main: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-border: #333333;

    --font-heading: 'Noto Sans KR', sans-serif;
    --font-body: 'Inter', 'Noto Sans KR', sans-serif;

    --container-width: 1200px;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(118, 185, 0, 0.3);
}

.btn-outline {
    border: 1px solid var(--color-text-main);
    color: var(--color-text-main);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-sub {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 60px;
    /* navbar offset */
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.hero-usps {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
    color: var(--color-primary);
}

.cta-group {
    display: flex;
    gap: 1rem;
}

/* Background Effects */
.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    /* 전체 너비 써서 3D 모델 시원하게 보이게 */
    height: 100%;
    z-index: 1;
    opacity: 0.8;
    /* 텍스트 가독성을 위해 살짝 투명도 조절 */
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%);
    /* 왼쪽 텍스트 영역 페이드 아웃 효과 */
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%);
    /* 3D 모델 돌려볼 수 있게 */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg iframe {
    width: 120%;
    height: 120%;
    transform: translate(5%, 5%);
    /* Move slightly right/down to push bottom-right watermark deeper out? 
       No, watermark is at bottom-right of IFRAME.
       If iframe is 120% of container, and centered?
       Container overflow hidden.
       We want bottom-right corner of FRAME to be OUTSIDE container.
       Default iframe is top-left 0.
       If we make it 120%, it extends to right and bottom.
       So normally watermark is at 100% W, 100% H.
       With 120%, it is at 120% W, 120% H relative to container.
       So it is HIDDEN. (Container clips at 100%).
       So plain width: 120%; height: 120%; is enough if aligned top-left.
       But we want to center the content probably.
       Let's use negative margin to center:
       margin-left: -10%; margin-top: -10%;
       This puts the center of iframe at center of container.
       Bottom-right of iframe is now at 110% W of container.
       So watermark is hidden.
    */
    position: absolute;
    top: -10%;
    left: -10%;
}

/* 텍스트가 묻히지 않도록 그림자 추가 */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

/* Section Utilities */
.section {
    padding: 100px 0;
}

.bg-darker {
    background-color: #050505;
}

/* USP Grid */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: 12px;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    background: var(--color-surface-hover);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.card p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* Comparison Table */
.comparison-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-surface);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background: var(--color-surface-hover);
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.comparison-table th.highlight {
    color: var(--color-primary);
    font-weight: 900;
    border-bottom: 2px solid var(--color-primary);
}

.comparison-table td.highlight {
    color: var(--color-primary);
    font-weight: bold;
    background: rgba(118, 185, 0, 0.03);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Trust Section (Split Layout) */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.text-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.check-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.check-list li::before {
    content: "✓";
    color: var(--color-primary);
    font-weight: bold;
}

/* --- REFINED REVIEWS PAGE STYLES --- */

.review-page-header {
    background: #111;
    padding: 60px 0 40px;
    border-bottom: 1px solid #222;
    text-align: center;
}

.review-page-header h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.review-page-header p {
    color: #777;
    font-size: 0.9rem;
}

.review-dashboard {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    background: #161616;
    border: 1px solid #222;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.dashboard-left {
    flex: 2;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.total-score {
    text-align: center;
    min-width: 120px;
}

.total-score .score-num {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.total-score .stars {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin: 5px 0;
}

.total-score .total-count {
    color: #888;
    font-size: 0.8rem;
}

.score-breakdown {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #aaa;
}

.bar-bg {
    flex: 1;
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #888;
    /* Neutral grey for bars */
}

.bar-row:first-child .bar-fill {
    background: var(--color-primary);
    /* Only top bar is green */
}

.dashboard-right {
    flex: 1;
    border-left: 1px solid #333;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.verification-notice {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 10px;
}

.review-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.filter-tabs {
    display: flex;
    gap: 1.5rem;
}

.filter-tabs button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    padding: 0;
    transition: color 0.2s;
}

.filter-tabs button.active {
    color: #fff;
    border-bottom: 2px solid #fff;
    /* Active underline hack if needed, or just color */
    padding-bottom: 2px;
}

.filter-search input {
    background: #222;
    border: 1px solid #333;
    padding: 8px 12px;
    color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
}

.reviews-list-container {
    display: flex;
    flex-direction: column;
}

.review-item {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #222;
}

.review-meta {
    min-width: 150px;
}

.review-meta .rating {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.review-meta .date {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.review-meta .author {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-buy {
    font-size: 0.7rem;
    color: #aaa;
    border: 1px solid #444;
    padding: 1px 4px;
    border-radius: 3px;
    margin-left: 4px;
    font-weight: normal;
}

.review-content {
    flex: 1;
}

.review-content .title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

/* Pagination - Modern Minimal */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 3rem;
}

.page-btn {
    background: transparent;
    border: none;
    color: #888;
    min-width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.page-btn.active {
    background: var(--color-primary);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(118, 185, 0, 0.4);
}

/* Text buttons (Prev/Next) */
.page-btn.nav-btn {
    width: auto;
    padding: 0 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.page-btn.disabled {
    color: #333;
    cursor: default;
    background: transparent;
}

.page-btn.disabled:hover {
    transform: none;
    background: transparent;
}

.dots {
    color: #555;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.review-content .text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-helpful {
    background: #222;
    border: 1px solid #333;
    color: #888;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
}

.btn-helpful:hover {
    background: #333;
    color: #fff;
}

.seller-reply-box {
    margin-top: 1.5rem;
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 6px;
    position: relative;
}

.seller-reply-box::before {
    content: "↳";
    position: absolute;
    top: 1.5rem;
    left: -1rem;
    color: #444;
}

.reply-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.badge-seller {
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 2px;
}

.reply-content {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .review-item {
        flex-direction: column;
        gap: 1rem;
    }

    .dashboard-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #333;
        padding-top: 1rem;
    }
}

/* Benchmark Image */
.benchmark-img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.15);
    /* Orange glow */
    transition: transform 0.3s ease;
}

.benchmark-img:hover {
    transform: scale(1.02);
}

/* Animation Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}


/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: #161616;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    background: #1a1a1a;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-header .review-info {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.seller-reply {
    margin-top: 15px;
    padding: 15px;
    background: rgba(118, 185, 0, 0.05);
    /* Very slight Nvidia green tint */
    border-left: 3px solid var(--color-primary);
    border-radius: 4px;
    font-size: 0.95rem;
}

.seller-reply-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.seller-badge {
    background: var(--color-primary);
    color: #000;
    font-weight: bold;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.seller-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
}

.reply-text {
    color: #ccc;
    line-height: 1.5;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #888;
    overflow: hidden;
    border: 1px solid #444;
}

.review-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.review-stars {
    color: #ffd700;
    /* Gold */
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-text {
    color: #ddd;
    /* Slightly brighter for better readability */
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: normal;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
}

/* Placeholder Utility */
.placeholder-bg {
    background: linear-gradient(135deg, #222 0%, #333 100%);
}


/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: #1a1a1a;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #fff;
}

.modal-header h3 {
    font-size: 1.2rem;
    color: var(--color-text-main);
    margin-bottom: 2rem;
    line-height: 1.4;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}

/* Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(118, 185, 0, 0.1);
    border-left-color: var(--color-primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.modal-state p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.hidden {
    display: none;
}

/* Result Styles */
.result-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

#resultTitle {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.success-text {
    color: var(--color-primary);
}

.fail-text {
    color: #ff4444;
}

#resultMessage {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #ccc;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(118, 185, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(118, 185, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(118, 185, 0, 0);
    }
}

/* Product Grid Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: var(--color-primary);
}

.product-image-container {
    width: 100%;
    height: 250px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 꽉 차게 */
    transition: transform 0.3s;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: #fff;
}

.product-price {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 800;
    margin-bottom: 1rem;
}

.product-stock-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 1rem;
}

.btn-buy {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

/* Modal Adjustments */
.modal-header img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: #000;
}

/* Responsive adjustments */
/* Responsive adjustments */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .nav-links,
    .sm-hidden {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-usps {
        flex-direction: column;
        gap: 0.5rem;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* Q&A Accordion Styles */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #333;
}

.faq-question {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-right: 1rem;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #bbb;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Approximate max height */
}


/* Chatbot Styles */
#chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

#chatbot-btn {
    background: var(--color-primary);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(118, 185, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

#chatbot-btn:hover {
    transform: scale(1.05);
}

#chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    transition: all 0.3s ease;
}

#chatbot-window.hidden {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

.chat-header {
    background: #111;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.chat-header .title {
    font-weight: 700;
    color: var(--color-primary);
}

.chat-header .close-chat {
    background: none;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-footer {
    padding: 1rem;
    border-top: 1px solid #333;
    background: #111;
}

/* Chat Bubbles */
.message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.message.bot {
    background: #333;
    color: #eee;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.message.user {
    background: var(--color-primary);
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    font-weight: 500;
}

.option-btn {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
    display: inline-block;
    transition: all 0.2s;
}

.option-btn:hover {
    background: var(--color-primary);
    color: #000;
}

/* Footer Styles */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid #333;
    padding: 3rem 0;
    margin-top: 5rem;
    color: #888;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo {
    color: #fff;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-info p {
    margin: 0.3rem 0;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.copyright {
    color: #444;
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Notice Popup Specifics */
#noticeModal .modal-content {
    max-width: 600px;
    text-align: left;
    border: 1px solid var(--color-primary);
    box-shadow: 0 0 50px rgba(118, 185, 0, 0.1);
}

.notice-title {
    color: var(--color-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 2rem;
}

.notice-body strong {
    color: #fff;
    font-weight: 700;
}

.notice-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.daily-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #999;
    cursor: pointer;
}

.daily-check input {
    accent-color: var(--color-primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
}