:root {
    --orange: #fe7902;
    --dark: #292929;
    --off: #fffff5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    background: #000000;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

/* Navigation */
.site-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

#userInfo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-name {
    color: #fff;
    font-weight: 500;
}

.login-btn {
    background: rgba(255, 255, 255, 0.12);
    padding: 10px 16px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.logout-btn {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Main Container */
.comments-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
}

/* Hero Section */
.hero-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.background-glow {
    position: absolute;
    top: -30%;
    right: 10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 112, 243, 0.12) 0%, transparent 70%);
    animation: pulseGlow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 0.4; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Product Image Section */
.product-visual {
    position: relative;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ps5-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-25px);
    }
}

.ps5-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 112, 243, 0.25));
    transition: filter 0.3s ease;
}

.ps5-image:hover {
    filter: drop-shadow(0 40px 80px rgba(0, 112, 243, 0.35));
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 112, 243, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 112, 243, 0.3);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideInRight 0.8s ease-out 0.5s backwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.controllers-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    animation: fadeIn 1s ease-out 0.7s backwards;
}

.controller-indicator {
    width: 50px;
    height: 50px;
    background: rgba(0, 112, 243, 0.15);
    border: 2px solid rgba(0, 112, 243, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    animation: bounce 2s ease-in-out infinite;
}

.controller-image {
    width: 80px;
    height: auto;
    transition: all 0.3s ease;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 112, 243, 0.3));
}

.controller-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 112, 243, 0.5));
}

.controller-indicator:nth-child(1), .controller-image:nth-child(1) { animation-delay: 0s; }
.controller-indicator:nth-child(2), .controller-image:nth-child(2) { animation-delay: 0.3s; }
.controller-indicator:nth-child(3), .controller-image:nth-child(3) { animation-delay: 0.6s; }
.controller-indicator:nth-child(4), .controller-image:nth-child(4) { animation-delay: 0.9s; }

@keyframes bounce {
    0%, 100% { 
        transform: translateY(0) scale(1);
        border-color: rgba(0, 112, 243, 0.4);
    }
    50% { 
        transform: translateY(-8px) scale(1.05);
        border-color: rgba(0, 112, 243, 0.6);
    }
}

/* Product Info Section */
.product-info {
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.product-tag {
    display: inline-block;
    background: linear-gradient(135deg, #0070f3 0%, #00d4ff 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.product-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #4a90ff 50%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(74, 144, 255, 0.3);
}

.product-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 400;
}

.package-details {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
}

.package-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-item:last-child {
    border-bottom: none;
}

.package-icon {
    font-size: 28px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 112, 243, 0.1);
    border-radius: 10px;
}

.package-text {
    flex: 1;
}

.item-name {
    font-size: 19px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.item-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    letter-spacing: -0.1px;
    line-height: 1.4;
}

/* Progress Section in Hero */
.funding-progress {
    margin-bottom: 32px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.amount-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.raised-amount {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #0070f3 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.remaining-amount {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 165, 0, 0.95);
    background: rgba(255, 165, 0, 0.1);
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 165, 0, 0.3);
    display: inline-block;
    width: fit-content;
    animation: pulseRemaining 2s ease-in-out infinite;
}

.remaining-amount.goal-reached {
    color: rgba(0, 255, 136, 0.95);
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    animation: celebrateGoal 1s ease-in-out infinite;
}

@keyframes pulseRemaining {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.02);
    }
}

@keyframes celebrateGoal {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.goal-amount {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-top: 4px;
    text-align: right;
}

.progress-bar-wrapper {
    width: 100%;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #0070f3 0%, #00d4ff 100%);
    border-radius: 10px;
    width: 0%;
    position: relative;
    transition: width 2s ease-out;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    overflow: hidden;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contribute-btn {
    width: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #bdd1ef 100%);
    color: #1d1d1f;
    border: none;
    padding: 20px;
    border-radius: 14px;
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    letter-spacing: -0.3px;
}

.contribute-btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #d3dce8 100%);
}

.contribute-btn:active {
    transform: translateY(-1px) scale(0.99);
}

/* Upload Section */
.upload {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.add-comment-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
}

.form-header {
    margin-bottom: 24px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
}

.bank-info {
    background: rgba(74, 144, 255, 0.08);
    border: 1px solid rgba(74, 144, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
}

.info-title {
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.bank-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.bank-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bank-item:last-child {
    border-bottom: none;
}

.bank-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.bank-value {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.iban-copy {
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px 12px;
    margin: -8px -12px;
    border-radius: 8px;
    position: relative;
}

.iban-copy:hover {
    background: rgba(74, 144, 255, 0.15);
    color: #4a90ff;
    transform: translateX(2px);
}

.iban-copy:active {
    transform: scale(0.98);
}

.iban-copy.copied {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
}

.info-notice {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notice-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    line-height: 1.5;
}

/* Login Required Message */
.login-required-message {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Loader Animation */
.loader {
    --s: 25px;
    --g: 5px;
    width: calc(3 * (1.353 * var(--s) + var(--g)));
    aspect-ratio: 3;
    background:
        linear-gradient(#6200ff 0 0) left/33% 100% no-repeat,
        conic-gradient(
            from -90deg at var(--s) calc(0.353 * var(--s)),
            #fff 135deg,
            #666 0 270deg,
            #aaa 0
        );
    background-blend-mode: multiply;
    --_m: linear-gradient(
            to bottom right,
            #0000 calc(0.25 * var(--s)),
            #000 0 calc(100% - calc(0.25 * var(--s)) - 1.414 * var(--g)),
            #0000 0
        ),
        conic-gradient(
            from -90deg at right var(--g) bottom var(--g),
            #000 90deg,
            #0000 0
        );
    -webkit-mask: var(--_m);
    mask: var(--_m);
    background-size: calc(100% / 3) 100%;
    -webkit-mask-size: calc(100% / 3) 100%;
    mask-size: calc(100% / 3) 100%;
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    animation: l7 steps(3) 1.5s infinite;
    margin: 0 auto 24px;
}

@keyframes l7 {
    to {
        background-position: 150% 0%;
    }
}

.login-required-message h3 {
    font-size: 22px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.login-required-message p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.login-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0070f3 0%, #00d4ff 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 112, 243, 0.3);
}

.login-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 112, 243, 0.5);
    background: linear-gradient(135deg, #0080ff 0%, #00e4ff 100%);
}

.login-cta-btn:active {
    transform: translateY(-1px);
}

.input-group {
    margin-bottom: 20px;
}

.file-input {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-input:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.upload-message {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.submit-button {
    background: linear-gradient(135deg, #f5f7fa 0%, #9eb0ce 100%);
    color: #1d1d1f;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #d3dce8 100%);
}

.submit-button:active {
    transform: translateY(0);
}

/* Privacy Checkboxes */
.privacy-options {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.privacy-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.privacy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0070f3;
}

.privacy-checkbox label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    user-select: none;
}

/* Optional Fields */
.optional-fields {
    margin-top: 16px;
}

.optional-details {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
}

.optional-details summary {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    list-style: none;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.optional-details summary::before {
    content: '▶';
    font-size: 10px;
    transition: transform 0.2s;
}

.optional-details[open] summary::before {
    transform: rotate(90deg);
}

.optional-details:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.optional-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.optional-input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #ffffff;
    font-size: 13px;
    transition: all 0.2s;
}

.optional-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.optional-input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 112, 243, 0.5);
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    margin: 60px 0;
}

/* Entries Section */
.entries {
    margin-bottom: 40px;
}

.header-section {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
}

.subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.comments-container {
    display: grid;
    gap: 20px;
}

/* Comment Cards */
.comment-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comment-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar-wrapper {
    position: relative;
}

.comment-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.verified-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #0070f3 0%, #00d4ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid #000000;
}

.comment-user-info {
    flex: 1;
}

.user-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.comment-username {
    font-size: 17px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.amount-badge {
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c1a 100%);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.company-badge {
    background: rgba(100, 150, 255, 0.15);
    color: rgba(100, 150, 255, 0.9);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(100, 150, 255, 0.3);
}

.comment-timestamp {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.comment-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-left: 3px solid rgba(0, 112, 243, 0.5);
    border-radius: 8px;
}

.ai-response {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(0, 212, 255, 0.9);
    padding: 14px 18px;
    background: rgba(0, 112, 243, 0.08);
    border: 1px solid rgba(0, 112, 243, 0.2);
    border-radius: 12px;
    font-style: italic;
}

/* Sort Buttons */
.sort-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.sort-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.sort-btn.active {
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c1a 100%);
    border-color: transparent;
    color: #ffffff;
}

/* Medal Badge */
.medal-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: medalFloat 3s ease-in-out infinite;
}

@keyframes medalFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Total Badge */
.total-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

/* Single Amount */
.single-amount {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    padding-left: 4px;
}

/* Entry Detail */
.entry-detail {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.entry-detail:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* Emperor Card - Turuncu Işık Efekti */
.emperor-card {
    position: relative;
    background: rgba(255, 140, 0, 0.05);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 
        0 0 30px rgba(255, 140, 0, 0.2),
        0 0 60px rgba(255, 140, 0, 0.1),
        inset 0 0 40px rgba(255, 140, 0, 0.05);
    animation: emperorGlow 3s ease-in-out infinite;
}

.emperor-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        rgba(255, 140, 0, 0.4),
        rgba(255, 200, 100, 0.2),
        rgba(255, 140, 0, 0.4)
    );
    border-radius: 18px;
    z-index: -1;
    opacity: 0.6;
    filter: blur(10px);
    animation: emperorBorderGlow 4s ease-in-out infinite;
}

@keyframes emperorGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(255, 140, 0, 0.3),
            0 0 60px rgba(255, 140, 0, 0.15),
            inset 0 0 40px rgba(255, 140, 0, 0.06);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(255, 140, 0, 0.4),
            0 0 80px rgba(255, 140, 0, 0.2),
            inset 0 0 50px rgba(255, 140, 0, 0.08);
    }
}

@keyframes emperorBorderGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

.emperor-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 0 40px rgba(255, 140, 0, 0.4),
        0 0 80px rgba(255, 140, 0, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Theme Toggle Torch */
.theme-toggle-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transform: scale(0.5);
    transform-origin: bottom right;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.torch {
    display: flex;
    justify-content: center;
    height: 150px;
}

.head,
.stick {
    position: absolute;
    width: 30px;
    transform-style: preserve-3d;
    transform: rotateX(-30deg) rotateY(45deg);
}

.stick {
    position: relative;
    height: 120px;
}

.face {
    position: absolute;
    transform-style: preserve-3d;
    width: 30px;
    height: 30px;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 50% 50%;
    background-color: #000000;
}

.top {
    transform: rotateX(90deg) translateZ(15px);
}

.left {
    transform: rotateY(-90deg) translateZ(15px);
}

.right {
    transform: rotateY(0deg) translateZ(15px);
}

.top div,
.left div,
.right div {
    width: 102%;
    height: 102%;
}

.top div:nth-child(1),
.left div:nth-child(3),
.right div:nth-child(3) {
    background-color: #ffff9760;
}

.top div:nth-child(2),
.left div:nth-child(1),
.right div:nth-child(1) {
    background-color: #ffd80060;
}

.top div:nth-child(3),
.left div:nth-child(4),
.right div:nth-child(4) {
    background-color: #ffffff60;
}

.top div:nth-child(4),
.left div:nth-child(2),
.right div:nth-child(2) {
    background-color: #ff8f0060;
}

.side {
    position: absolute;
    width: 30px;
    height: 120px;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: repeat(8, 12.5%);
    cursor: pointer;
    translate: 0 12px;
}

.side-left {
    transform: rotateY(-90deg) translateZ(15px) translateY(8px);
}

.side-right {
    transform: rotateY(0deg) translateZ(15px) translateY(8px);
}

.side-left div,
.side-right div {
    width: 103%;
    height: 103%;
}

.side div:nth-child(1) {
    background-color: #443622;
}

.side div:nth-child(2),
.side div:nth-child(2) {
    background-color: #2e2517;
}

.side div:nth-child(3),
.side div:nth-child(5) {
    background-color: #4b3b23;
}

.side div:nth-child(4),
.side div:nth-child(10) {
    background-color: #251e12;
}

.side div:nth-child(6) {
    background-color: #292115;
}

.side div:nth-child(7) {
    background-color: #4b3c26;
}

.side div:nth-child(8) {
    background-color: #292115;
}

.side div:nth-child(9) {
    background-color: #4b3a21;
}

.side div:nth-child(11),
.side div:nth-child(15) {
    background-color: #3d311d;
}

.side div:nth-child(12) {
    background-color: #2c2315;
}

.side div:nth-child(13) {
    background-color: #493a22;
}

.side div:nth-child(14) {
    background-color: #2b2114;
}

.side div:nth-child(16) {
    background-color: #271e10;
}

.container input:checked ~ .torch .face {
    filter: drop-shadow(0px 0px 2px rgb(255, 255, 255))
        drop-shadow(0px 0px 10px rgba(255, 237, 156, 0.7))
        drop-shadow(0px 0px 25px rgba(255, 227, 101, 0.4));
}

.container input:checked ~ .torch .top div:nth-child(1),
.container input:checked ~ .torch .left div:nth-child(3),
.container input:checked ~ .torch .right div:nth-child(3) {
    background-color: #ffff97;
}

.container input:checked ~ .torch .top div:nth-child(2),
.container input:checked ~ .torch .left div:nth-child(1),
.container input:checked ~ .torch .right div:nth-child(1) {
    background-color: #ffd800;
}

.container input:checked ~ .torch .top div:nth-child(3),
.container input:checked ~ .torch .left div:nth-child(4),
.container input:checked ~ .torch .right div:nth-child(4) {
    background-color: #ffffff;
}

.container input:checked ~ .torch .top div:nth-child(4),
.container input:checked ~ .torch .left div:nth-child(2),
.container input:checked ~ .torch .right div:nth-child(2) {
    background-color: #ff8f00;
}

.container input:checked ~ .torch .side div:nth-child(1) {
    background-color: #7c623e;
}

.container input:checked ~ .torch .side div:nth-child(2),
.container input:checked ~ .torch .side div:nth-child(2) {
    background-color: #4c3d26;
}

.container input:checked ~ .torch .side div:nth-child(3),
.container input:checked ~ .torch .side div:nth-child(5) {
    background-color: #937344;
}

.container input:checked ~ .torch .side div:nth-child(4),
.container input:checked ~ .torch .side div:nth-child(10) {
    background-color: #3c2f1c;
}

.container input:checked ~ .torch .side div:nth-child(6) {
    background-color: #423522;
}

.container input:checked ~ .torch .side div:nth-child(7) {
    background-color: #9f7f50;
}

.container input:checked ~ .torch .side div:nth-child(8) {
    background-color: #403320;
}

.container input:checked ~ .torch .side div:nth-child(9) {
    background-color: #977748;
}

.container input:checked ~ .torch .side div:nth-child(11),
.container input:checked ~ .torch .side div:nth-child(15) {
    background-color: #675231;
}

.container input:checked ~ .torch .side div:nth-child(12) {
    background-color: #3d301d;
}

.container input:checked ~ .torch .side div:nth-child(13) {
    background-color: #987849;
}

.container input:checked ~ .torch .side div:nth-child(14) {
    background-color: #3b2e1b;
}

.container input:checked ~ .torch .side div:nth-child(16) {
    background-color: #372a17;
}

/* Light Mode */
body {
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
}

body.light-mode {
    background: #ffffff;
    color: #1d1d1f;
}

body.light-mode .site-header {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
    color: #1d1d1f;
}

body.light-mode .site-header h1 {
    color: #1d1d1f;
}

body.light-mode .nav-link {
    color: rgba(0, 0, 0, 0.65);
}

body.light-mode .nav-link:hover {
    background: rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.95);
}

body.light-mode .nav-link.active {
    background: rgba(0, 0, 0, 0.12);
    color: #1d1d1f;
}

body.light-mode .user-name {
    color: #1d1d1f;
}

body.light-mode .login-btn {
    background: rgba(0, 0, 0, 0.08);
    color: #1d1d1f;
}

body.light-mode .login-btn:hover {
    background: rgba(0, 0, 0, 0.15);
}

body.light-mode .logout-btn {
    background: rgba(0, 0, 0, 0.08);
    color: #1d1d1f;
    border-color: rgba(0, 0, 0, 0.2);
}

body.light-mode .logout-btn:hover {
    background: rgba(0, 0, 0, 0.15);
}

body.light-mode .product-tag {
    background: linear-gradient(135deg, #0070f3 0%, #00d4ff 100%);
    color: #ffffff;
}

body.light-mode .raised-amount {
    background: linear-gradient(135deg, #0070f3 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .goal-amount {
    color: rgba(0, 0, 0, 0.85);
}

body.light-mode .remaining-amount {
    color: rgba(200, 120, 0, 0.95);
    background: rgba(255, 165, 0, 0.12);
    border-color: rgba(200, 120, 0, 0.35);
}

body.light-mode .remaining-amount.goal-reached {
    color: rgba(0, 180, 80, 0.95);
    background: rgba(0, 200, 100, 0.12);
    border-color: rgba(0, 180, 80, 0.35);
}

body.light-mode .stat-value {
    color: #1d1d1f;
}

body.light-mode .stat-label {
    color: rgba(0, 0, 0, 0.5);
}

body.light-mode .background-glow {
    background: radial-gradient(circle, rgba(0, 112, 243, 0.08) 0%, transparent 70%);
}

body.light-mode .hero-section,
body.light-mode .add-comment-section,
body.light-mode .comment-card {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.12);
}

body.light-mode .comment-card:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

body.light-mode .product-title {
    background: linear-gradient(135deg, #1d1d1f 0%, #0070f3 50%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

body.light-mode .product-subtitle,
body.light-mode .form-subtitle,
body.light-mode .subtitle {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .item-name,
body.light-mode .form-title,
body.light-mode .section-title,
body.light-mode .comment-username {
    color: rgba(0, 0, 0, 0.95);
}

body.light-mode .item-desc,
body.light-mode .bank-label,
body.light-mode .notice-item,
body.light-mode .comment-text {
    color: rgba(0, 0, 0, 0.65);
}

body.light-mode .bank-value,
body.light-mode .info-title {
    color: rgba(0, 0, 0, 0.9);
}

body.light-mode .package-details,
body.light-mode .bank-details {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .package-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .bank-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .bank-info {
    background: rgba(0, 112, 243, 0.1);
    border-color: rgba(0, 112, 243, 0.25);
}

body.light-mode .file-input,
body.light-mode .optional-input {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
    color: #1d1d1f;
}

body.light-mode .file-input:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
}

body.light-mode .optional-input:focus {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 112, 243, 0.5);
}

body.light-mode .optional-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

body.light-mode .comment-timestamp,
body.light-mode .single-amount {
    color: rgba(0, 0, 0, 0.5);
}

body.light-mode .privacy-checkbox label {
    color: rgba(0, 0, 0, 0.75);
}

body.light-mode .privacy-options,
body.light-mode .optional-details {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .optional-details:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
}

body.light-mode .optional-details summary {
    color: rgba(0, 0, 0, 0.7);
}

body.light-mode .optional-content {
    border-top-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .divider {
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 0, 0, 0.15), 
        transparent
    );
}

body.light-mode .sort-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.7);
}

body.light-mode .sort-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.9);
}

body.light-mode .login-required-message {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.15);
}

body.light-mode .login-required-message h3 {
    color: rgba(0, 0, 0, 0.95);
}

body.light-mode .login-required-message p {
    color: rgba(0, 0, 0, 0.65);
}

body.light-mode .entry-detail {
    border-top-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .iban-copy:hover {
    background: rgba(0, 112, 243, 0.12);
}

body.light-mode .progress-bar-wrapper {
    background: rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .product-visual {
        order: -1;
    }

    .ps5-image {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .comments-wrapper {
        padding: 20px 16px;
    }

    .hero-section {
        padding: 40px 30px;
    }

    .product-title {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

    .raised-amount {
        font-size: 38px;
    }

    .remaining-amount {
        font-size: 15px;
        padding: 5px 12px;
    }

    .goal-amount {
        font-size: 20px;
        text-align: left;
    }

    .progress-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .amount-row {
        width: 100%;
    }

    .progress-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .controller-indicator {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .controller-image {
        width: 60px;
    }

    .bank-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .bank-value {
        font-size: 13px;
        word-break: break-all;
    }

    .privacy-options {
        flex-direction: column;
        gap: 12px;
    }

    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .submit-button {
        width: 100%;
    }
}
