/* UI inspired by 80eighty.com with Teal/Green Gradient Palette */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Teal/Green Gradient Palette */
    --teal-1: #004B3E;
    --teal-2: #005D4C;
    --teal-3: #006F5C;
    --teal-4: #009279;
    --teal-5: #00AA8E;
    --teal-6: #00B89A;
    --teal-7: #00C2A3;
    --teal-8: #00CCAC;
    --teal-9: #00D6B5;
    --teal-10: #019D83;
    --teal-11: #2C7B6F;
    --teal-12: #42AFA1;
    --teal-13: #91C5C1;
    --teal-14: #BFDEDA;
    
    /* Dark Colors */
    --dark-1: #0E0E0F;
    --dark-2: #222527;
    --dark-3: #414548;
    
    /* Neutral/Metallic */
    --gray-1: #637378;
    --gray-2: #86939A;
    
    /* White */
    --white: #FCFDFD;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--teal-1) 0%, var(--teal-5) 50%, var(--teal-9) 100%);
    --gradient-teal: linear-gradient(135deg, var(--teal-4) 0%, var(--teal-8) 100%);
    --gradient-teal-light: linear-gradient(135deg, var(--teal-6) 0%, var(--teal-9) 100%);
    --gradient-text: linear-gradient(135deg, var(--teal-6) 0%, var(--teal-9) 100%);
    
    /* Shadows */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(0, 184, 154, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--dark-1);
    min-height: 100vh;
}

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

/* Header */
header {
    background-color: var(--dark-1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--dark-3);
}

nav {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(0, 184, 154, 0.3));
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    max-width: 300px;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .logo-img {
        height: 50px;
        max-width: 250px;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--teal-6);
}

.nav-links a i {
    font-size: 1.1rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-teal);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(14, 14, 15, 0.7) 0%, rgba(14, 14, 15, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: center;
}

.hero-text {
    margin-bottom: 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text .gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 800;
}

.hero-cta {
    margin-top: 2rem;
}

/* Countdown Timer - Prominent */
.countdown-hero {
    background: var(--dark-2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
    border: 2px solid var(--teal-6);
    box-shadow: 0 0 30px rgba(0, 184, 154, 0.3);
}

.countdown-hero h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.countdown-display-hero {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.countdown-unit-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--dark-3);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--teal-6);
    min-width: 100px;
}

.countdown-value-hero {
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Courier New', monospace;
}

.countdown-label-hero {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-2);
}

/* Forms */
.auth-form, .profile-page {
    max-width: 500px;
    margin: 3rem auto;
    background: var(--dark-2);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--dark-3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--dark-3);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: var(--dark-1);
    color: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--teal-6);
    background-color: var(--dark-2);
    box-shadow: 0 0 10px rgba(0, 184, 154, 0.2);
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-primary {
    background: #CE382E;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(206, 56, 46, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 56, 46, 0.5);
    background: #B82E25;
}

.btn-secondary {
    background-color: var(--dark-3);
    color: var(--white);
    border-color: var(--gray-1);
}

.btn-secondary:hover {
    background-color: var(--gray-1);
    transform: translateY(-2px);
}

.errorlist {
    color: #ff6b6b;
    list-style: none;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

/* Messages */
.messages {
    margin: 1.5rem 0;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
    border: 1px solid;
}

.alert-success {
    background-color: rgba(0, 184, 154, 0.1);
    color: var(--teal-6);
    border-color: var(--teal-6);
}

.alert-error {
    background-color: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border-color: #ff6b6b;
}

.alert-info {
    background-color: rgba(0, 184, 154, 0.1);
    color: var(--teal-6);
    border-color: var(--teal-6);
}

/* Raffles */
.page-header {
    text-align: center;
    margin: 3rem 0 2rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-header p {
    color: var(--gray-2);
    font-size: 1.1rem;
}

.raffle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.raffle-card {
    background: var(--dark-2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    border: 1px solid var(--dark-3);
}

.raffle-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--teal-6);
}

.raffle-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.raffle-hero {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: var(--dark-1);
}

.raffle-hero-placeholder {
    width: 100%;
    height: 280px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.raffle-card-content {
    padding: 1.5rem;
}

.raffle-card h2 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.3;
}

.raffle-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.raffle-card .price::before {
    content: '$';
    font-size: 1.25rem;
}

/* Progress Bar */
.progress-container {
    margin: 1rem 0;
}

.progress-bar-wrapper {
    width: 100%;
    height: 12px;
    background: var(--dark-3);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 1px solid var(--dark-3);
}

.progress-bar {
    height: 100%;
    background: var(--gradient-teal);
    border-radius: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(0, 184, 154, 0.5);
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

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

.progress-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.progress-text .ticket-icon {
    font-size: 1.1rem;
}

.progress-text .entry-count {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--teal-6);
}

/* Entry Badge */
.entry-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
    background: var(--gradient-teal);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 184, 154, 0.3);
}

.entry-badge .ticket-icon {
    font-size: 1.1rem;
}

.entry-count {
    font-weight: 700;
}

.raffle-card .ends-at {
    color: var(--gray-2);
    font-size: 0.9rem;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.raffle-detail {
    background: var(--dark-2);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 2rem 0;
    border: 1px solid var(--dark-3);
}

.raffle-detail h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.raffle-hero-large {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    margin-bottom: 2rem;
    border-radius: 12px;
    border: 2px solid var(--dark-3);
}

.raffle-hero-large-placeholder {
    width: 100%;
    max-height: 600px;
    min-height: 400px;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--white);
    border-radius: 12px;
    border: 2px solid var(--dark-3);
}

/* Carousel Styles */
.raffle-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    border-radius: 12px;
    overflow: hidden;
    background: var(--dark-2);
}

.raffle-carousel {
    position: relative;
    width: 100%;
    height: 600px;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover,
.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.raffle-info {
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.raffle-info .price {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.raffle-description {
    margin: 2rem 0;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--gray-2);
}

.raffle-actions {
    margin: 2.5rem 0;
}

.info-message {
    padding: 1.25rem;
    background: var(--dark-3);
    border-radius: 8px;
    font-weight: 500;
    color: var(--white);
    border: 1px solid var(--teal-6);
}

.raffle-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-3);
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.raffle-links a {
    color: var(--teal-6);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.raffle-links a:hover {
    color: var(--teal-9);
    text-decoration: underline;
}

/* Large Progress Bar for Detail Page */
.progress-container-large {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--dark-3);
    border-radius: 12px;
    border: 2px solid var(--teal-6);
}

.progress-bar-wrapper-large {
    width: 100%;
    height: 20px;
    background: var(--dark-1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid var(--dark-3);
}

.progress-bar-large {
    height: 100%;
    background: var(--gradient-teal);
    border-radius: 12px;
    transition: width 0.8s ease;
    box-shadow: 0 0 15px rgba(0, 184, 154, 0.6);
    position: relative;
    overflow: hidden;
}

.progress-bar-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

.progress-text-large {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    flex-wrap: wrap;
}

.progress-text-large .ticket-icon-large {
    font-size: 1.5rem;
}

.progress-text-large .entry-count-large {
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.2rem;
    color: var(--teal-6);
}

.progress-percentage {
    font-weight: 700;
    color: var(--teal-9);
    font-size: 1.1rem;
    background: rgba(0, 184, 154, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--teal-6);
}

/* Countdown Timer */
.countdown-timer {
    background: var(--dark-2);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
    border: 2px solid var(--teal-6);
    box-shadow: 0 0 20px rgba(0, 184, 154, 0.3);
}

.countdown-timer h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Courier New', monospace;
}

.countdown-label {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-2);
}

/* Entries */
.entries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.entry-card {
    background: var(--dark-2);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--dark-3);
}

.entry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--teal-6);
}

.entry-card h2 a {
    color: var(--white);
}

.entry-card p {
    color: var(--gray-2);
}

.entry-thumbnail {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    margin: 1rem 0;
    border-radius: 8px;
    border: 1px solid var(--dark-3);
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-revoked {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

/* Footer */
footer {
    margin-top: 5rem;
    padding: 3rem 0;
    background-color: var(--dark-1);
    color: var(--white);
    border-top: 2px solid var(--dark-3);
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

footer nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

footer a {
    color: var(--gray-2);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--teal-6);
}

.footer-info {
    text-align: center;
    color: var(--gray-1);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--dark-2);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--dark-3);
}

.empty-state h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--gray-2);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Message pages */
.message-page {
    max-width: 600px;
    margin: 3rem auto;
    background: var(--dark-2);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--dark-3);
}

.message-page h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

/* Success page */
.success-page {
    max-width: 800px;
    margin: 3rem auto;
    background: var(--dark-2);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--dark-3);
}

.success-page h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
}

.order-summary {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--dark-3);
    border-radius: 12px;
    border: 1px solid var(--teal-6);
}

.order-summary h2 {
    margin-bottom: 1rem;
    color: var(--white);
}

.order-summary p {
    color: var(--gray-2);
}

.art-preview {
    margin: 2.5rem 0;
    text-align: center;
}

.art-preview h2 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.art-thumbnail {
    max-width: 100%;
    max-height: 500px;
    margin: 1.5rem 0;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 2px solid var(--dark-3);
}

.success-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Processing page */
.processing-page {
    max-width: 600px;
    margin: 5rem auto;
    background: var(--dark-2);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--dark-3);
}

.processing-page h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

/* Static pages */
.static-page {
    max-width: 900px;
    margin: 3rem auto;
    background: var(--dark-2);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--dark-3);
}

.static-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.page-body {
    margin: 2rem 0;
    line-height: 1.9;
    font-size: 1.05rem;
    color: var(--gray-2);
}

.page-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-3);
    color: var(--gray-1);
    font-size: 0.875rem;
}

/* Profile page */
.profile-section {
    margin: 2rem 0;
    padding: 2.5rem;
    background: var(--dark-2);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--dark-3);
}

.profile-section h2 {
    margin-bottom: 2rem;
    color: var(--white);
    font-size: 1.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .raffle-grid, .entries-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .countdown-display, .countdown-display-hero {
        gap: 0.5rem;
        font-size: 1.2rem;
    }
    
    .countdown-value-hero {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text .gradient-text {
        font-size: 1.5rem;
    }
}
