:root {
    --bg-color: #d8ceb4;
    --text-color: #1a1a1a;
    --accent-red: #b34139;
    --panel-border: 1px solid var(--text-color);
    --dark-bg: #2c3545;
    --white: #ffffff;
    --grid-dot-color: rgba(26, 26, 26, 0.1);
}

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

body {
    font-family: 'PT Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    /* Subtle dot grid + Noise texture for a craft/organic feel */
    background-image: 
        radial-gradient(var(--grid-dot-color) 1px, transparent 1px),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 20px 20px, 150px 150px;
    background-attachment: fixed;
}

h1, h2, h3, .hero-meta, .vertical-label, .sec-label, .profile-meta, .btn {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
}

/* Typography basics */
.panel {
    border: var(--panel-border);
    position: relative;
    padding: 40px;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Staggered animation delays */
.hero-left { animation-delay: 0.1s; }
.hero-right { animation-delay: 0.2s; }
.ingredients-title { animation-delay: 0.3s; }
.ingredient-card:nth-child(1) { animation-delay: 0.4s; }
.ingredient-card:nth-child(2) { animation-delay: 0.5s; }
.ingredient-card:nth-child(3) { animation-delay: 0.6s; }
.ingredient-card:nth-child(4) { animation-delay: 0.7s; }
.profile-section:nth-of-type(1) .panel { animation-delay: 0.8s; }
.order-right { animation-delay: 0.9s; }

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

.page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    border-left: var(--panel-border);
    border-right: var(--panel-border);
    background-color: var(--bg-color);
    min-height: 100vh;
}

/* HERO SECTION */
.hero-section {
    display: flex;
    border-bottom: var(--panel-border);
    min-height: 600px;
}

.hero-left {
    flex: 1;
    border-right: var(--panel-border);
    border-bottom: none;
    border-top: none;
    border-left: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-meta {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.stamp {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 100px;
    height: 100px;
    transform: rotate(15deg);
}

.main-title {
    font-size: 120px;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 300px;
}

.price-box {
    display: inline-block;
    border: 2px solid var(--text-color);
    padding: 10px 20px;
    font-family: 'Roboto Mono', monospace;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 60px;
    background: transparent;
}

.btn {
    padding: 15px 30px;
    font-size: 20px;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.btn:hover {
    transform: translate(-3px, -3px);
}
.btn:active {
    transform: translate(2px, 2px);
}

.btn-black {
    background-color: var(--text-color);
    color: var(--white);
}

/* Offset border effect */
.btn::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid var(--text-color);
    z-index: -1;
    transition: all 0.3s ease;
}
.btn:hover::after {
    top: 9px;
    left: 9px;
    right: -9px;
    bottom: -9px;
}
.btn:active::after {
    top: 2px;
    left: 2px;
    right: -2px;
    bottom: -2px;
}

.btn-red {
    background-color: var(--accent-red);
    color: var(--white);
    border: 2px solid var(--text-color);
}
.btn-full {
    width: 100%;
    margin-top: 20px;
    font-size: 24px;
    padding: 20px;
}

.action-note {
    font-size: 10px;
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    margin-top: 15px;
}

/* HERO RIGHT */
.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: none;
    padding: 30px 40px 40px;
    gap: 20px;
}

.vertical-label {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    letter-spacing: 4px;
    font-size: 12px;
    white-space: nowrap;
}

/* PROMO TAG */
.promo-tag {
    width: 100%;
    border: 2px dashed var(--accent-red);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(179, 65, 57, 0.05);
    position: relative;
}
.promo-tag-label {
    background: var(--accent-red);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 4px 10px;
    white-space: nowrap;
    flex-shrink: 0;
}
.promo-tag-text {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: var(--text-color);
    flex: 1;
}
.promo-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--accent-red);
}
.promo-tag-btn {
    display: inline-block;
    background: var(--text-color);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 8px 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.promo-tag-btn:hover {
    background: var(--accent-red);
}

/* JARS ILLUSTRATION */
.jars-illustration {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.jar {
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jar.jar-2 {
    transform: translateY(20px); /* Offset middle jar */
}

.jar-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(4px 4px 0px rgba(26,26,26,0.1));
}


/* INGREDIENTS SECTION */
.ingredients-title {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    border-bottom: var(--panel-border);
    border-left: none; border-right: none; border-top: none;
}
.sec-label {
    background: var(--text-color);
    color: var(--bg-color);
    padding: 5px 15px;
    font-size: 14px;
    margin-right: 20px;
}
.section-heading {
    font-size: 32px;
    margin-right: 20px;
}
.dashed-line {
    flex: 1;
    border-bottom: 2px dashed var(--text-color);
    height: 1px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: var(--panel-border);
}

.ingredient-card {
    border: none;
    border-right: var(--panel-border);
    border-bottom: var(--panel-border);
    transition: background-color 0.4s ease;
}
.ingredient-card:hover {
    background-color: rgba(255, 255, 255, 0.3);
}
.ingredient-card:nth-child(2n) {
    border-right: none;
}
.ingredient-card:nth-last-child(-n+2) {
    border-bottom: none;
}

.ing-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.ing-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.ing-icon svg {
    width: 24px; height: 24px;
}

.ing-header h3 {
    font-size: 24px;
}

.ingredient-card p {
    font-size: 15px;
    margin-bottom: 30px;
    color: #333;
}

.ing-specs {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
}

.spec-row {
    display: flex;
    align-items: flex-end;
    margin-bottom: 8px;
}

.spec-row .dots {
    flex: 1;
    border-bottom: 1px dotted var(--text-color);
    margin: 0 10px;
    position: relative;
    top: -4px;
}

/* PROFILES SECTION */
.profile-section {
    display: flex;
    border-bottom: var(--panel-border);
}
.profile-section.reverse {
    flex-direction: row-reverse;
}

.profile-left {
    flex: 1;
    border-right: var(--panel-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top: none; border-bottom: none; border-left: none;
}
.profile-section.reverse .profile-left {
    border-right: none;
    border-left: var(--panel-border);
}

.bg-number {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 400px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(179, 65, 57, 0.2);
    line-height: 0.8;
    z-index: 0;
}

.jar-large {
    width: 300px;
    z-index: 1;
}
.jar-large .jar-lid { width: 140px; height: 25px; }
.jar-large .jar-body { height: 260px; }
.jar-large .jar-label { width: 140px; height: 180px; }
.jar-large .jar-num { font-size: 36px; }
.jar-large .jar-name { font-size: 24px; }
.jar-red .jar-body { background-color: rgba(179, 65, 57, 0.3); }
.jar-green .jar-body { background-color: rgba(90, 110, 90, 0.3); }
.red-text { color: var(--accent-red); }
.green-text { color: #5a6e5a; }


.profile-right {
    flex: 1;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-meta {
    font-family: 'Roboto Mono', monospace;
    color: var(--accent-red);
    font-size: 12px;
    margin-bottom: 15px;
}

.profile-title {
    font-size: 48px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 24px;
    margin-right: 15px;
}
.badge.red {
    background: var(--accent-red);
    color: var(--white);
    border: 2px solid var(--text-color);
}

.profile-desc {
    margin-bottom: 40px;
    font-size: 16px;
    max-width: 90%;
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Roboto Mono', monospace;
    font-size: 13px;
}

.profile-table th, .profile-table td {
    border: 1px solid var(--text-color);
    padding: 15px;
    text-align: left;
    vertical-align: top;
}
.profile-table th {
    width: 120px;
    font-weight: normal;
}

/* ORDER FORM */
.order-section {
    display: flex;
    background-color: var(--dark-bg);
    color: var(--bg-color);
}

.order-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
}

.sec-label.white {
    background: transparent;
    color: var(--bg-color);
    padding: 0;
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.order-title {
    font-size: 56px;
    margin-bottom: 20px;
}

.order-desc {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 20px;
    max-width: 400px;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid rgba(216, 206, 180, 0.3);
    margin-bottom: 30px;
    font-family: 'Roboto Mono', monospace;
    max-width: max-content;
}
.qty-btn {
    background: transparent;
    border: none;
    color: var(--bg-color);
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}
.qty-btn:hover {
    background-color: rgba(216, 206, 180, 0.1);
}
.qty-number {
    width: 40px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}
.qty-label {
    padding: 0 15px;
    font-size: 12px;
    opacity: 0.7;
    border-left: 2px solid rgba(216, 206, 180, 0.3);
    height: 40px;
    display: flex;
    align-items: center;
}

.receipt-box {
    border: 1px solid rgba(216, 206, 180, 0.3);
    padding: 30px;
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    margin-bottom: 40px;
    max-width: 400px;
}

.receipt-row {
    display: flex;
    margin-bottom: 15px;
}
.receipt-row .dots {
    flex: 1;
    border-bottom: 1px dotted rgba(216, 206, 180, 0.5);
    margin: 0 10px;
    position: relative;
    top: -4px;
}
.receipt-total {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
}

.trust-badges {
    display: flex;
    gap: 20px;
}
.trust-badge {
    border: 1px solid rgba(216, 206, 180, 0.3);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    letter-spacing: 1px;
}
.trust-badge svg {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.order-right {
    flex: 1;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 40px;
    border: 2px solid var(--text-color);
    padding: 60px;
}

.blank-tab {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--dark-bg);
    color: var(--bg-color);
    padding: 5px 15px;
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    border: 2px solid var(--text-color);
}

.form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}
.form-header h3 {
    font-size: 24px;
    margin-top: 10px;
}

.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
}
.form-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--text-color);
    padding: 10px 0;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    outline: none;
    color: var(--text-color);
}
.form-group input::placeholder {
    color: rgba(26, 26, 26, 0.4);
}

.secure-note {
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-section, .ingredients-grid, .profile-section, .order-section {
        flex-direction: column;
        display: flex;
    }
    .profile-section.reverse {
        flex-direction: column;
    }
    .hero-left, .hero-right, .profile-left, .profile-right, .order-left, .order-right {
        border-right: none;
        border-bottom: var(--panel-border);
    }
    .hero-right { padding: 30px 15px 30px; gap: 15px; }
    .promo-tag { flex-wrap: wrap; gap: 10px; padding: 14px 16px; }
    .promo-tag-btn { width: 100%; text-align: center; }
    .ingredients-grid { grid-template-columns: 1fr; }
    .ingredient-card { border-right: none; }
    .order-right { margin: 0; border: none; border-top: var(--panel-border); }
}

@media (max-width: 600px) {
    /* Global Adjustments */
    .panel { padding: 20px; }
    
    /* Hero Section */
    .hero-left { padding: 40px 20px; }
    .main-title { font-size: 60px; line-height: 0.95; }
    .subtitle { font-size: 16px; margin-bottom: 30px; }
    .stamp { top: 20px; right: 20px; width: 80px; height: 80px; }
    .jars-illustration { gap: 5px; }
    .jar { width: 95px; }
    
    /* Ingredients */
    .section-heading { font-size: 26px; }
    .ingredients-title { padding: 20px; flex-direction: column; align-items: flex-start; gap: 10px; }
    .dashed-line { display: none; }
    .ingredient-card { padding: 20px; }
    .ing-header h3 { font-size: 20px; }
    
    /* Profiles */
    .profile-title { font-size: 32px; flex-direction: column; align-items: flex-start; gap: 10px; }
    .badge { margin-right: 0; }
    .bg-number { font-size: 150px; top: 10%; }
    .jar-large { width: 140px; }
    .jar-large .jar-lid { width: 100px; height: 20px; }
    .jar-large .jar-body { height: 180px; }
    .jar-large .jar-label { width: 100px; height: 120px; }
    .jar-large .jar-num { font-size: 28px; }
    .jar-large .jar-name { font-size: 18px; }
    
    .profile-table { font-size: 12px; }
    .profile-table th, .profile-table td { padding: 10px; }
    
    /* Order Section */
    .order-left { padding: 30px 20px; }
    .order-title { font-size: 40px; }
    .order-right { padding: 30px 20px; margin: 0; border-left: none; border-right: none; }
    .receipt-box { padding: 20px; }
    .receipt-total { font-size: 24px; flex-direction: column; gap: 10px; align-items: flex-start; }
    .blank-tab { right: 10px; top: -12px; font-size: 10px; }
    .trust-badges { flex-direction: column; gap: 10px; }
    .btn-full { font-size: 20px; padding: 15px; }
    .address-input-wrapper { flex-direction: column; align-items: stretch; }
    .btn-map { width: 100%; text-align: center; }
}

/* PHOTO GALLERY SECTION */
.gallery-section {
    padding-bottom: 0;
}
.gallery-header {
    text-align: center;
    border-bottom: none;
    padding: 60px 20px 40px;
}
.gallery-header h2 {
    font-size: 64px;
    margin-bottom: 15px;
    color: var(--text-color);
}
.gallery-header p {
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    letter-spacing: 3px;
    opacity: 0.7;
}
.gallery-carousel {
    width: 100%;
    padding: 40px 0 60px 0;
    border-top: var(--panel-border);
    overflow: hidden;
    position: relative;
}
.swiper-slide {
    width: 400px; /* Fixed width for slides, swiper will handle spacing */
    max-width: 80vw;
    aspect-ratio: 1 / 1;
    border: 2px solid var(--text-color);
    background-color: var(--text-color);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}
.swiper-slide-active {
    transform: scale(1.05);
    box-shadow: 12px 12px 0 rgba(0,0,0,0.15);
    z-index: 2;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(110%);
    transition: filter 0.4s ease;
}
.swiper-slide-active img {
    filter: grayscale(0%) contrast(100%);
}
.custom-nav {
    color: var(--text-color) !important;
}
.custom-nav::after {
    font-size: 28px !important;
    font-weight: bold;
}
.swiper-pagination-bullet {
    background: var(--text-color) !important;
    opacity: 0.3 !important;
    width: 10px !important;
    height: 10px !important;
}
.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

@media (max-width: 900px) {
    .gallery-header h2 { font-size: 48px; }
    .swiper-slide {
        width: 300px;
    }
}
@media (max-width: 600px) {
    .gallery-header h2 { font-size: 36px; }
    .gallery-carousel {
        padding: 20px 0 50px 0;
    }
    .swiper-slide {
        width: 250px;
    }
}

/* CDEK WIDGET & MODAL STYLES */
.address-input-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.address-input-wrapper input {
    cursor: pointer;
}
.btn-map {
    background-color: var(--text-color);
    color: var(--bg-color);
    border: none;
    padding: 10px 15px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-map:hover {
    background-color: var(--accent-red);
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(26, 26, 26, 0.9); /* Сделал чуть темнее вместо блюра */
    /* Убрал backdrop-filter: blur(5px), так как он крашит старые iPhone (Safari) вместе с тяжелой картой */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.modal-content {
    background-color: var(--bg-color);
    width: 100%;
    max-width: 900px;
    height: 80vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    animation: none !important; /* Отключаем анимацию для модалки, чтобы не перегружать GPU на телефонах */
    transform: none !important;
}
.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}
.modal-close svg {
    width: 32px; height: 32px;
}

/* RAFFLE MODAL */
.raffle-modal-content {
    background-color: var(--bg-color);
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid var(--text-color);
    box-shadow: 8px 8px 0 rgba(26,26,26,0.3);
}

.raffle-modal-header {
    background-color: var(--dark-bg);
    color: var(--white);
    text-align: center;
    padding: 40px 40px 30px;
    border-bottom: 2px solid var(--accent-red);
    position: relative;
}

.raffle-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.raffle-modal-close:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.raffle-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--accent-red);
    margin-bottom: 10px;
}

.raffle-modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    line-height: 1;
    color: var(--white);
}
.raffle-modal-title span {
    color: var(--accent-red);
}

.raffle-modal-sub {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

.raffle-rules {
    padding: 30px 40px;
}

.raffle-rule-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(26,26,26,0.1);
}
.raffle-rule-item:last-child {
    border-bottom: none;
}

.raffle-rule-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--accent-red);
    flex-shrink: 0;
    width: 36px;
    line-height: 1.1;
}

.raffle-rule-text {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.raffle-rule-text strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--text-color);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.raffle-modal-footer {
    background: rgba(26,26,26,0.04);
    border-top: 1px solid rgba(26,26,26,0.1);
    padding: 16px 40px;
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    color: rgba(26,26,26,0.5);
    line-height: 1.6;
}

@media (max-width: 600px) {
    .raffle-modal-content { max-height: 95vh; }
    .raffle-modal-header { padding: 30px 20px 20px; }
    .raffle-modal-title { font-size: 52px; }
    .raffle-rules { padding: 20px; }
    .raffle-modal-footer { padding: 16px 20px; }
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px 20px;
    background: #111;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}
.footer-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--accent-red);
    text-decoration-color: var(--accent-red);
}
.footer-info {
    line-height: 1.6;
}