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

/* Accessibility - Skip Links */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #d4af37;
    color: #1a1a2e;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    z-index: 1000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Accessibility - Visually Hidden Content */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Accessibility - Focus Management */
*:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* Accessibility - High Contrast Mode Support */
@media (prefers-contrast: high) {
    .card {
        border-width: 4px;
    }
    
    .spread-btn {
        border-width: 3px;
    }
    
    .interpretation {
        border-width: 2px;
    }
}

/* Accessibility - Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .wheel-of-fortune-img {
        animation: none;
    }
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8e8e8;
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 18px;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.wheel-of-fortune-container {
    flex-shrink: 0;
}

.header-text {
    flex: 1;
    text-align: left;
}

.wheel-of-fortune-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 4px solid #d4af37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: rotate 20s linear infinite;
    transform: scale(1.2);
}

.wheel-of-fortune-img:hover {
    transform: scale(1.25);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    animation-play-state: paused;
}

@keyframes rotate {
    from {
        transform: scale(1.2) rotate(0deg);
    }
    to {
        transform: scale(1.2) rotate(360deg);
    }
}

.title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
    font-style: italic;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.decorative-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.decorative-card {
    position: absolute;
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0.1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.decorative-card:hover {
    opacity: 0.2;
    transform: scale(1.05);
}

.card-1 {
    top: 10%;
    left: 5%;
    transform: rotate(-15deg);
}

.card-2 {
    top: 20%;
    right: 8%;
    transform: rotate(20deg);
}

.card-3 {
    top: 60%;
    left: 3%;
    transform: rotate(-10deg);
}

.api-config {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    display: none;
}

.api-config h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.api-config p {
    margin-bottom: 15px;
    color: #b8b8b8;
}

#apiKey {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    border: 2px solid #d4af37;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #e8e8e8;
    font-size: 1rem;
    margin-bottom: 15px;
}

#apiKey::placeholder {
    color: #b8b8b8;
}

.save-btn {
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #d4af37;
    color: #d4af37;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.save-btn:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.api-note {
    font-size: 0.9rem;
    color: #888;
}

.api-note a {
    color: #d4af37;
    text-decoration: none;
}

.api-note a:hover {
    text-decoration: underline;
}

.question-section {
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}


/* Content Pages Styling */
.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.8;
}

.content-section h1 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.content-section h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 10px;
}

.content-section h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
}

.content-section p {
    color: #e8e8e8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.content-section ul {
    color: #e8e8e8;
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.content-section a {
    color: #d4af37;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.content-section a:hover {
    border-bottom: 1px solid #d4af37;
}

.back-link {
    text-align: center;
    margin-top: 50px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn:hover {
    background: linear-gradient(135deg, #f4d03f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.contact-section h2 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-info {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.faq-section h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feedback-tips {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.feedback-tips h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

#birthDate {
    padding: 12px;
    border: 2px solid #d4af37;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #e8e8e8;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

#birthDate::-webkit-calendar-picker-indicator {
    filter: invert(1);
}


.hidden {
    display: none !important;
}

.question-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.personal-info-inputs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.name-input {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

#userName {
    width: 100%;
    padding: 12px;
    border: 2px solid #d4af37;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #e8e8e8;
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
}

#userName::placeholder {
    color: #b8b8b8;
}

.starsign-input {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.starsign-select {
    width: 100%;
    padding: 12px;
    border: 2px solid #d4af37;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #e8e8e8;
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.starsign-select:focus {
    outline: none;
    border-color: #f4d03f;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.starsign-select option {
    background: #1a1a2e;
    color: #e8e8e8;
    padding: 8px;
}

.reading-type-selection {
    margin-bottom: 20px;
}

.reading-type-selection h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #d4af37;
    text-align: center;
}

.reading-type-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.reading-type-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
}

.reading-type-option:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.reading-type-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.reading-type-option input[type="radio"]:checked + .radio-custom {
    background: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.reading-type-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #1a1a2e;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.reading-type-option input[type="radio"]:checked ~ .radio-text {
    color: #d4af37;
    font-weight: 600;
}

.radio-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #e8e8e8;
    transition: all 0.3s ease;
}

.question-input-section {
    margin-bottom: 15px;
}

.question-input-section textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #d4af37;
    border-radius: 8px;
    background: rgba(26, 26, 46, 0.8);
    color: #e8e8e8;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    resize: vertical;
    min-height: 80px;
}

.question-input-section textarea:focus {
    outline: none;
    border-color: #e6c547;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.question-input-section textarea.warning {
    border-color: #ffa500;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}

.question-input-section textarea.danger {
    border-color: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.char-counter {
    text-align: right;
    margin-top: 5px;
    font-size: 0.9rem;
    color: #b8b8b8;
}

.char-counter.warning {
    color: #ffa500;
}

.char-counter.danger {
    color: #ff6b6b;
}

.general-reading-info {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.general-reading-info p {
    color: #d4af37;
    font-style: italic;
    margin: 0;
    font-size: 1rem;
}

#userQuestion {
    width: 100%;
    padding: 15px;
    border: 2px solid #d4af37;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #e8e8e8;
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    resize: vertical;
    backdrop-filter: blur(10px);
}

#userQuestion::placeholder {
    color: #b8b8b8;
}

.spread-selection {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.spread-selection h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.spread-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.spread-btn {
    padding: 12px 24px;
    border: 2px solid #d4af37;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.spread-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.spread-btn.active {
    background: #d4af37;
    color: #1a1a2e;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.4);
}

.action-section {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.draw-btn, .clear-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.draw-btn {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.draw-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.clear-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #e8e8e8;
    border: 2px solid #666;
}

.clear-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.reading-area {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.reading-area.hidden {
    display: none;
}

.reading-area h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #d4af37;
}

.cards-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin: 40px 0 60px 0; /* More space for card names above and position labels below */
    position: sticky;
    top: 20px;
    z-index: 100;
    flex-wrap: wrap;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cards-container.sticky-active {
    background: rgba(26, 26, 46, 0.98);
    border: 2px solid #d4af37;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.card {
    width: 100px;
    height: 150px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border: 3px solid #d4af37;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    overflow: visible; /* Allow position labels to show below */
    margin: 30px 0; /* Space for card names above and position labels below */
    flex: 0 0 auto; /* Allow cards to grow/shrink based on container */
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show full image without cropping */
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* Ensure authentic images display properly */
    background: #000;
}

/* Card overlay removed - showing full images */

/* Card image loading state */
.card-image {
    transition: opacity 0.3s ease;
}

.card-image:not([src]) {
    opacity: 0;
}

/* Text-based cards styling */
.card.text-based {
    background: linear-gradient(145deg, #2c3e50, #34495e);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.card.text-based .card-position {
    position: static;
    background: #d4af37;
    color: #1a1a2e;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    margin-bottom: 10px;
}

.card.text-based .card-name {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #d4af37;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 10px;
}

.card.text-based .card-suit {
    font-size: 2rem;
    color: #e8e8e8;
    margin: 10px 0;
}

.card.text-based .card-number {
    font-size: 0.8rem;
    color: #b8b8b8;
    font-weight: 500;
}

/* Ensure text is visible on images */
/* Card overlay text styles removed */

.card:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.card:hover .card-name-display {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.card:hover .card-position {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.card.reversed .card-image {
    transform: scaleY(-1); /* Flip the image vertically */
}

.card.reversed:hover {
    transform: translateY(-8px) scale(1.08);
}

.card.reversed:hover .card-image {
    transform: scaleY(-1) scale(1.05); /* Maintain flip on hover */
}

.card-name {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 3px;
}

.card-suit {
    font-size: 1rem;
    color: #d4af37;
    margin: 3px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.card-number {
    font-size: 0.6rem;
    color: #b8b8b8;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.card-name-display {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4af37;
    color: #1a1a2e;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 150px;
    text-align: center;
    line-height: 1.2;
}

.card-position {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4af37;
    color: #1a1a2e;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.interpretation {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    text-align: left;
    line-height: 1.8;
    font-size: 19px;
}

.interpretation h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 20px;
    margin-top: 25px;
}

.interpretation h4:first-child {
    margin-top: 0;
}

.interpretation p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.loading-indicator {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    margin: 20px 0;
}

.loading-indicator.hidden {
    display: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 175, 55, 0.3);
    border-top: 4px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite, pulse 2s ease-in-out infinite;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.loading-indicator p {
    color: #d4af37;
    font-size: 1.1rem;
    font-style: italic;
}

/* Google AdSense Styles */
.google-ad-header {
    margin: 20px 0;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    min-height: 90px;
    min-width: 300px;
    opacity: 0; /* Initially hidden until content loads */
    transition: opacity 0.5s ease;
}

.google-ad-banner {
    margin: 30px 0;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    min-height: 90px;
    min-width: 300px;
    opacity: 0; /* Initially hidden until content loads */
    transition: opacity 0.5s ease;
}

.google-ad-post-reading {
    margin: 40px 0;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    min-height: 90px;
    min-width: 300px;
    opacity: 0; /* Initially hidden until content loads */
    transition: opacity 0.5s ease;
}

.google-ad-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 15px;
    display: none; /* Initially hidden until content loads */
    transition: opacity 0.5s ease;
}

/* Responsive Design for Google Ads */
@media (max-width: 768px) {
    .google-ad-sidebar {
        position: static;
        transform: none;
        width: 100%;
        margin: 20px 0;
        right: auto;
        top: auto;
    }
    
    .google-ad-header,
    .google-ad-banner,
    .google-ad-post-reading {
        margin: 20px 0;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .google-ad-header,
    .google-ad-banner,
    .google-ad-post-reading,
    .google-ad-sidebar {
        padding: 10px;
        margin: 15px 0;
    }
    
    /* Extra small mobile devices - maximize readability */
    .interpretation {
        padding: 10px 4px;
        font-size: 16px;
        line-height: 1.6;
        margin: 0 2px;
        max-width: calc(100% - 4px);
        border: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .interpretation h4 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .interpretation p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    .reading-area {
        padding: 0 2px;
    }
}

/* Ad Container and Fallback Styles */
.ad-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 500;
}

.ad-container {
    position: relative;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 20px;
    color: #b8b8b8;
    font-size: 0.9rem;
    text-align: center;
    z-index: 1;
    display: none;
}

.ad-container:not(.ad-loaded) .ad-fallback {
    display: block;
}

.ad-container.ad-loaded .ad-fallback {
    display: none;
}

/* Error Pages */
.error-page {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.error-page h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 30px;
}

.error-page p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e8e8e8;
    margin-bottom: 20px;
}

.error-page .draw-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.error-page .draw-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e6c547, #d4af37);
}

/* Spread-specific layouts */
.spread-single .cards-container {
    justify-content: center;
}

.spread-three .cards-container {
    justify-content: space-around;
}

.spread-celtic .cards-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Celtic Cross Layout - Central Cross */
.celtic-cross {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.celtic-cross-horizontal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.celtic-cross-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Celtic Cross Staff - Right Side */
.celtic-staff {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}

/* Card positioning for Celtic Cross */
.spread-celtic .card:nth-child(1) { 
    /* Situation - Center of cross */
    order: 1;
}

.spread-celtic .card:nth-child(2) { 
    /* Challenge - Crosses over situation */
    order: 2;
    transform: rotate(90deg);
    margin: -20px 0;
}

.spread-celtic .card:nth-child(3) { 
    /* Past - Left of cross */
    order: 3;
}

.spread-celtic .card:nth-child(4) { 
    /* Future - Right of cross */
    order: 4;
}

.spread-celtic .card:nth-child(5) { 
    /* Above - Top of cross */
    order: 5;
}

.spread-celtic .card:nth-child(6) { 
    /* Below - Bottom of cross */
    order: 6;
}

/* Staff cards (7-10) */
.spread-celtic .card:nth-child(7) { 
    /* Advice - Top of staff */
    order: 7;
}

.spread-celtic .card:nth-child(8) { 
    /* External - Second on staff */
    order: 8;
}

.spread-celtic .card:nth-child(9) { 
    /* Hopes/Fears - Third on staff */
    order: 9;
}

.spread-celtic .card:nth-child(10) { 
    /* Outcome - Bottom of staff */
    order: 10;
}

/* 12 Month specific styling */
.spread-twelve .twelve-month-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.spread-twelve .month-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.spread-twelve .month-card {
    width: 100px;
    height: 150px;
    margin: 5px;
}

.spread-twelve .month-card .card-position {
    font-size: 0.7rem;
    padding: 4px 8px;
    bottom: -15px;
    max-width: 90px;
    text-align: center;
    line-height: 1.1;
}

/* Premium Button Styling */
.premium-btn {
    position: relative;
    background: linear-gradient(135deg, #6c5ce7, #5f3dc4);
    color: #ffffff;
    border: 2px solid #6c5ce7;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.premium-btn:hover {
    background: linear-gradient(135deg, #7c6ce7, #6c5ce7);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.premium-icon {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Coming Soon Section */
.coming-soon-section {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(95, 61, 196, 0.1));
    border-radius: 15px;
    margin-top: 20px;
}


.coming-soon-section h4 {
    color: #6c5ce7;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
}

.coming-soon-section p {
    color: #b8b8b8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.notify-section {
    background: rgba(26, 26, 46, 0.8);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(108, 92, 231, 0.3);
}

.notify-section p {
    margin-bottom: 15px;
    color: #e8e8e8;
}

.notify-section input {
    width: 100%;
    max-width: 300px;
    padding: 12px 15px;
    border: 2px solid #6c5ce7;
    border-radius: 8px;
    background: rgba(26, 26, 46, 0.9);
    color: #e8e8e8;
    font-size: 1rem;
    margin-bottom: 15px;
}

.notify-section input:focus {
    outline: none;
    border-color: #7c6ce7;
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.3);
}

.notify-btn {
    background: linear-gradient(135deg, #6c5ce7, #5f3dc4);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-btn:hover {
    background: linear-gradient(135deg, #7c6ce7, #6c5ce7);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.premium-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b6b;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Paywall Modal Styling */
#paywallModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#paywallModal .modal-content {
    max-width: 600px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid #d4af37;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 20px;
}

#paywallModal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

#paywallModal .modal-header h2 {
    color: #d4af37;
    margin: 0;
    font-size: 1.8rem;
}

#paywallModal .modal-close-btn {
    background: none;
    border: none;
    color: #d4af37;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#paywallModal .modal-close-btn:hover {
    color: #e6c547;
}

#paywallModal .modal-body {
    padding: 25px;
}

.premium-features {
    margin-bottom: 30px;
}

.premium-features h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.premium-features ul {
    list-style: none;
    padding: 0;
}

.premium-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: #e8e8e8;
}

.premium-features li:last-child {
    border-bottom: none;
}

.pricing-options {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.pricing-card {
    flex: 1;
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.pricing-card.featured {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card h4 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e8e8e8;
    margin-bottom: 5px;
}

.price span {
    font-size: 1rem;
    color: #b8b8b8;
    font-weight: normal;
}

.savings {
    color: #4ecdc4;
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.pricing-card li {
    padding: 5px 0;
    color: #e8e8e8;
    position: relative;
    padding-left: 20px;
}

.pricing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.subscribe-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a2e;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, #e6c547, #c9a52a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.payment-note {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.payment-note small {
    color: #b8b8b8;
    font-size: 0.9rem;
}

/* 5 Card specific styling */
.spread-five .cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.spread-five .card {
    width: 100px;
    height: 150px;
    margin: 10px;
}

/* Celtic Cross specific styling (kept for reference) */
.spread-celtic .celtic-cross {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    justify-content: center;
    margin: 20px 0;
}

.spread-celtic .celtic-cross-layout {
    position: relative;
    min-height: 400px;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spread-celtic .celtic-cross-horizontal {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.spread-celtic .celtic-cross-vertical {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 1;
}

.spread-celtic .celtic-staff {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-left: 0;
    min-height: 400px;
    justify-content: center;
    padding: 20px;
}

.spread-celtic .celtic-staff .card {
    position: relative;
}

/* Position labels for Celtic Cross */
.spread-celtic .card-position {
    font-size: 0.7rem;
    padding: 3px 8px;
    white-space: nowrap;
    max-width: 80px;
    bottom: -12px;
    text-align: center;
    line-height: 1.2;
}

/* Special styling for the crossed card */
/* Specific card positioning for Celtic Cross */
.spread-celtic .celtic-challenge {
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.spread-celtic .celtic-situation {
    z-index: 2;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.spread-celtic .celtic-past,
.spread-celtic .celtic-future,
.spread-celtic .celtic-above,
.spread-celtic .celtic-below {
    z-index: 1;
}

.spread-celtic .celtic-staff-card {
    position: relative;
    margin: 10px 0;
}

/* Add subtle background pattern for Celtic Cross */
.spread-celtic .celtic-cross-layout::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.2;
}

.spread-celtic .celtic-cross-layout::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 300px;
    background: linear-gradient(180deg, transparent, #d4af37, transparent);
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.2;
}

/* Add visual connection lines for Celtic Cross */
.spread-celtic .cards-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.3;
}

.spread-celtic .cards-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, transparent, #d4af37, transparent);
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.3;
}

/* Animations */
@keyframes cardFlip {
    0% { 
        transform: rotateY(0deg) scale(0.8);
        opacity: 0;
    }
    50% { 
        transform: rotateY(90deg) scale(1.1);
        opacity: 0.7;
    }
    100% { 
        transform: rotateY(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes cardDraw {
    0% {
        transform: translateY(-50px) rotate(-10deg) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px) rotate(5deg) scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }
}

.card.flipping {
    animation: cardFlip 0.8s ease-in-out;
}

.card-drawing {
    animation: cardDraw 0.6s ease-out forwards;
}

.card-drawn {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
}

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

@keyframes shuffleCard {
    0% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-20px) rotate(5deg) scale(1.05);
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px) rotate(-3deg) scale(0.95);
        opacity: 0.9;
    }
    75% { 
        transform: translateY(-25px) rotate(2deg) scale(1.02);
        opacity: 1;
    }
    100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
}

.reading-area.show {
    animation: fadeIn 0.8s ease-out;
}

/* Smooth scroll enhancement */
html {
    scroll-behavior: smooth;
}

/* Reading area scroll animation */
.reading-area {
    transition: transform 0.3s ease;
}

.reading-area.scroll-highlight {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* Responsive design */
@media (min-width: 1200px) {
    .card {
        width: 110px;
        height: 165px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .card {
        width: 105px;
        height: 158px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .header-text {
        text-align: center;
    }
    
    .wheel-of-fortune-img {
        width: 150px;
        height: 150px;
    }
    
    .header-text {
        text-align: center;
    }
    
    .fortune-teller-img {
        width: 150px;
        height: 200px;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .cards-container {
        gap: 15px;
    }
    
    /* Mobile interpretation readability improvements */
    .interpretation {
        padding: 12px 6px;
        font-size: 18px;
        line-height: 1.7;
        margin: 0 3px;
        max-width: calc(100% - 6px);
        border: 1px solid rgba(212, 175, 55, 0.15);
    }
    
    .interpretation h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .interpretation p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .reading-area {
        padding: 0 3px;
    }
    
    .card {
        width: 90px;
        height: 135px;
        padding: 0;
    }
    
    .card-overlay {
        padding: 8px 6px 6px;
    }
    
    .card-name {
        font-size: 0.6rem;
    }
    
    .card-suit {
        font-size: 0.8rem;
    }
    
    .card-number {
        font-size: 0.5rem;
    }
    
    .spread-options {
        flex-direction: column;
        align-items: center;
    }
    
    .action-section {
        flex-direction: column;
        align-items: center;
    }
    
    .spread-celtic .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    /* 12 Month responsive */
    .spread-twelve .month-row {
        gap: 10px;
    }
    
    .spread-twelve .month-card {
        width: 80px;
        height: 120px;
        margin: 3px;
    }
    
    .spread-twelve .month-card .card-position {
        font-size: 0.6rem;
        padding: 2px 6px;
        bottom: -12px;
        max-width: 70px;
    }
    
    /* 5 Card responsive */
    .spread-five .cards-container {
        gap: 15px;
    }
    
    .spread-five .card {
        width: 80px;
        height: 120px;
        margin: 5px;
    }
    
    .spread-celtic .celtic-cross {
        flex-direction: column;
        gap: 20px;
    }
    
    .spread-celtic .celtic-cross-layout {
        min-height: 300px;
        min-width: 300px;
    }
    
    .spread-celtic .celtic-staff {
        margin-left: 0;
        margin-top: 20px;
        min-height: 300px;
        gap: 20px;
    }
    
    .spread-celtic .celtic-cross-horizontal {
        gap: 15px;
    }
    
    .spread-celtic .celtic-cross-vertical {
        gap: 15px;
    }
    
    /* Paywall Modal Responsive */
    .pricing-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .price {
        font-size: 2rem;
    }
    
    #paywallModal .modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
}

/* Footer Styles */
.footer {
    text-align: center;
    padding: 20px;
    color: #b8b8b8;
    font-size: 0.9rem;
    margin-top: 40px;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d4af37;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e6c547;
    text-decoration: underline;
}

/* SEO Content Section */
.seo-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(40, 40, 60, 0.95));
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.seo-content h2 {
    color: #d4af37;
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Cinzel', serif;
}

.seo-content h3 {
    color: #e6c547;
    font-size: 1.6rem;
    margin: 35px 0 20px 0;
    font-family: 'Cinzel', serif;
}

.seo-content p {
    color: #e8e8e8;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.seo-content ul {
    color: #e8e8e8;
    font-size: 1.05rem;
    margin: 20px 0;
    padding-left: 25px;
}

.seo-content li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.seo-content strong {
    color: #d4af37;
    font-weight: 600;
}

@media (max-width: 768px) {
    .seo-content {
        padding: 40px 15px;
        margin: 30px 0;
    }
    
    .seo-content h2 {
        font-size: 1.8rem;
    }
    
    .seo-content h3 {
        font-size: 1.4rem;
    }
    
    .seo-content p,
    .seo-content ul {
        font-size: 1rem;
    }
}
