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

body {
    font-family: 'Cormorant Garamond', serif;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    color: #f5f5f5;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Watch Container */
.watch-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Brand Mark */
.brand-mark {
    text-align: center;
    margin-bottom: 1rem;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: #d4af37;
    margin-bottom: 0.3rem;
}

.brand-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    letter-spacing: 0.5em;
    color: #888;
    font-weight: 300;
}

/* Watch Face */
.watch-face {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    box-shadow: 
        0 0 0 8px #1a1a1a,
        0 0 0 12px #d4af37,
        0 0 0 13px #1a1a1a,
        inset 0 0 60px rgba(0, 0, 0, 0.8),
        0 30px 80px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Minute Ring */
.minute-ring {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    top: 5%;
    left: 5%;
}

.minute-marker {
    position: absolute;
    width: 2px;
    height: 12px;
    background: #555;
    left: 50%;
    top: 0;
    transform-origin: center 225px;
    margin-left: -1px;
}

.minute-marker.major {
    height: 20px;
    width: 3px;
    background: #888;
    margin-left: -1.5px;
}

/* Timeline Circle */
.timeline-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    transition: transform 0.05s linear;
}

.timeline-segment {
    transition: all 0.3s ease;
}

/* Ensure proper SVG scaling on mobile */
@media (max-width: 768px) {
    .timeline-segment {
        stroke-width: 2 !important;
    }
    
    .timeline-segment[stroke="#666"] {
        stroke-width: 2.5 !important;
    }
}

@media (max-width: 480px) {
    .timeline-segment {
        stroke-width: 1.5 !important;
    }
    
    .timeline-segment[stroke="#666"] {
        stroke-width: 2 !important;
    }
}

/* Magnifier Window */
.magnifier-window {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.magnifier-frame {
    width: 180px;
    height: 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 8px;
    box-shadow: 
        0 0 0 2px #d4af37,
        inset 0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.magnifier-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.current-moment {
    text-align: center;
    z-index: 1;
}

.moment-second {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: tick 1s ease-in-out infinite;
}

@keyframes tick {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.05); }
    20% { transform: scale(1); }
}

.moment-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: #666;
    margin-top: 0.2rem;
    font-weight: 500;
}

/* Acquire Button */
.acquire-button {
    width: 180px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: none;
    border-radius: 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #1a1a1a;
    cursor: pointer;
    box-shadow: 
        0 4px 16px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.acquire-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.acquire-button:hover::before {
    left: 100%;
}

.acquire-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 24px rgba(212, 175, 55, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

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

/* Watch Hands */
.hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    background: linear-gradient(to top, #d4af37, #f4d03f);
    border-radius: 4px 4px 0 0;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.hour-hand {
    width: 6px;
    height: 100px;
    margin-left: -3px;
    z-index: 5;
}

.minute-hand {
    width: 4px;
    height: 140px;
    margin-left: -2px;
    z-index: 6;
}

.second-hand {
    width: 2px;
    height: 160px;
    margin-left: -1px;
    background: linear-gradient(to top, #ff4444, #ff6666);
    z-index: 7;
}

.center-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #d4af37, #c4a037);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Time Display */
.time-display {
    text-align: center;
    margin: 2rem 0 3rem 0;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.full-time {
    font-family: 'Courier New', monospace;
    font-size: 2.5rem;
    color: #d4af37;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    font-weight: 700;
}

.date-display {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #aaa;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* Tagline */
.tagline {
    text-align: center;
    margin-top: 2rem;
}

.tagline-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #d4af37;
    margin-bottom: 0.8rem;
}

.tagline-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #aaa;
    font-weight: 300;
    font-style: italic;
}

/* Description */
.description {
    text-align: center;
    max-width: 500px;
    margin-top: 1.5rem;
    line-height: 1.8;
    color: #999;
}

.description p {
    margin-bottom: 0.8rem;
}

.charity-line {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.4s ease;
}

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

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 3rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 2px solid #d4af37;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    transform: rotate(90deg);
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: #d4af37;
    font-weight: 600;
}

/* Reservation Form */
.reservation-form {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.reservation-form::-webkit-scrollbar {
    width: 6px;
}

.reservation-form::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 3px;
}

.reservation-form::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 3px;
}

.moment-preview-card {
    margin-bottom: 2rem;
}

.moment-preview {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.2rem;
    border-radius: 6px;
    text-align: center;
    font-size: 1.3rem;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    letter-spacing: 0.05em;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 0.9rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: #f5f5f5;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.form-input::placeholder {
    color: #666;
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

/* Certificate Designer */
.certificate-designer {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
}

.certificate-designer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.design-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.design-section label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

/* Template Selector */
.template-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.template-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    color: #888;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.template-btn:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.1);
}

.template-btn.active {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
}

.template-icon {
    font-size: 1.5rem;
}

/* Color Selector */
.color-selector {
    display: flex;
    gap: 1rem;
}

.color-btn {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.color-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.color-btn.active {
    border-color: #f5f5f5;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.6);
}

/* Certificate Preview */
.certificate-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    min-height: 220px;
}

.certificate-preview svg {
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

.certificate-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    margin-top: 1rem;
    text-align: center;
}

.mint-button {
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.2em;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.mint-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5);
}

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

.charity-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

/* Watch Crown */
.watch-crown {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 15;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.watch-crown:hover {
    right: -32px;
}

.watch-crown.pulled {
    right: -45px;
}

.crown-stem {
    width: 15px;
    height: 8px;
    background: linear-gradient(90deg, #c4a037 0%, #d4af37 100%);
    border-radius: 2px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.crown-head {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    border-radius: 4px;
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.watch-crown:hover .crown-head {
    box-shadow: 
        0 3px 12px rgba(212, 175, 55, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.crown-ridges {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    padding: 4px 0;
}

.ridge {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.3), transparent);
}

/* Crown Hint */
.crown-hint {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    animation: hintFadeIn 0.8s ease 2s forwards, hintFloat 3s ease-in-out 2.8s infinite;
    z-index: 14;
}

@keyframes hintFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes hintFloat {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(-5px);
    }
}

.crown-hint.hidden {
    animation: hintFadeOut 0.5s ease forwards;
}

@keyframes hintFadeOut {
    0% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) translateX(-10px);
    }
}

.hint-text {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(244, 208, 63, 0.95));
    color: #1a1a1a;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
    box-shadow: 
        0 4px 16px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.hint-arrow {
    color: #d4af37;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.4));
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(3px);
        opacity: 0.7;
    }
}

/* Crown Panel */
.crown-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
    z-index: 999;
    transition: right 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-y: auto;
}

.crown-panel.active {
    right: 0;
}

.crown-panel-content {
    padding: 3rem 2rem;
}

.crown-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.crown-panel-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #d4af37;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.crown-close {
    background: none;
    border: none;
    color: #888;
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.crown-close:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    transform: rotate(90deg);
}

/* Quick Actions (already defined below) */

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    color: #d4af37;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    transform: translateY(-2px);
}

.quick-icon {
    font-size: 1.5rem;
    color: #d4af37;
}

/* DateTime Selector */
.datetime-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.time-input {
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    color: #f5f5f5;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.time-input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.time-input::-webkit-calendar-picker-indicator {
    filter: invert(0.7) sepia(1) saturate(5) hue-rotate(10deg);
    cursor: pointer;
}

/* Preset Moments */
.preset-moments {
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.preset-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.3rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    color: #d4af37;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preset-tag:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-1px);
}

/* Navigate Button */
.navigate-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: none;
    border-radius: 6px;
    color: #1a1a1a;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    margin-bottom: 1rem;
}

.navigate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5);
}

.navigate-btn:active {
    transform: translateY(0);
}

.navigate-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Nav Info */
.nav-info {
    text-align: center;
}

.nav-tip {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

/* SEO Content Section */
.seo-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.seo-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.use-case {
    background: rgba(212, 175, 55, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.use-case h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.use-case p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #aaa;
}

.why-etermoment {
    background: rgba(212, 175, 55, 0.08);
    padding: 3rem;
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 3rem;
}

.why-etermoment h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 2rem;
    text-align: center;
}

.why-etermoment ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.why-etermoment li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 2;
    color: #aaa;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.why-etermoment li::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.2rem;
}

.why-etermoment strong {
    color: #d4af37;
}

.keywords-footer {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.keywords-footer p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
    margin: 0;
}

/* Public Ledger Ticker */
.ledger-ticker {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.ledger-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scroll-ledger 60s linear infinite;
    gap: 3rem;
    padding-left: 100%;
}

@keyframes scroll-ledger {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ledger-track:hover {
    animation-play-state: paused;
}

.ledger-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    white-space: nowrap;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: #888;
    padding: 0 1rem;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.ledger-icon {
    color: #d4af37;
    font-size: 1rem;
}

.ledger-moment {
    font-family: 'Courier New', monospace;
    color: #d4af37;
    font-size: 0.85rem;
}

.ledger-event {
    color: #aaa;
    font-style: italic;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ledger-email {
    color: #666;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .watch-face {
        width: 350px;
        height: 350px;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .magnifier-frame {
        width: 140px;
        height: 60px;
    }
    
    .moment-second {
        font-size: 2.2rem;
    }
    
    .acquire-button {
        width: 140px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .hour-hand {
        height: 70px;
    }
    
    .minute-hand {
        height: 100px;
    }
    
    .second-hand {
        height: 120px;
    }
    
    .minute-ring {
        transform: scale(1);
    }
    
    .minute-marker {
        height: 8px;
        transform-origin: center 157.5px;
    }
    
    .minute-marker.major {
        height: 14px;
    }
    
    .full-time {
        font-size: 1.8rem;
    }
    
    .date-display {
        font-size: 1rem;
    }
    
    .time-display {
        margin: 1.5rem 0 2rem 0;
        padding: 1.5rem;
    }
    
    .tagline-text {
        font-size: 1.1rem;
    }
    
    .modal-content {
        padding: 2rem;
    }
    
    .quick-actions {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .datetime-selector {
        grid-template-columns: 1fr;
    }
    
    .crown-panel {
        width: 100%;
        right: -100%;
    }
    
    .crown-panel-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .watch-face {
        width: 280px;
        height: 280px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .magnifier-frame {
        width: 120px;
        height: 50px;
    }
    
    .moment-second {
        font-size: 1.8rem;
    }
    
    .hour-hand {
        height: 56px;
        width: 5px;
        margin-left: -2.5px;
    }
    
    .minute-hand {
        height: 80px;
        width: 3px;
        margin-left: -1.5px;
    }
    
    .second-hand {
        height: 96px;
        width: 1.5px;
        margin-left: -0.75px;
    }
    
    .minute-marker {
        height: 6px;
        width: 1.5px;
        transform-origin: center 126px;
        margin-left: -0.75px;
    }
    
    .minute-marker.major {
        height: 11px;
        width: 2.5px;
        margin-left: -1.25px;
    }
    
    .center-dot {
        width: 16px;
        height: 16px;
    }
    
    .watch-crown {
        transform: translateY(-50%) scale(0.9);
    }
    
    .quick-btn {
        font-size: 0.75rem;
        padding: 0.8rem 0.3rem;
    }
    
    .crown-panel-content {
        padding: 1.5rem 1rem;
    }
    
    .crown-hint {
        right: 40px;
    }
    
    .hint-text {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }
    
    .hint-arrow {
        width: 30px;
        height: 30px;
    }
    
    .ledger-ticker {
        height: 40px;
    }
    
    .ledger-item {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .ledger-event {
        max-width: 120px;
    }
    
    .seo-content {
        padding: 2rem 1rem;
    }
    
    .use-cases {
        grid-template-columns: 1fr;
    }
    
    .use-case {
        padding: 1.5rem;
    }
    
    .why-etermoment {
        padding: 2rem 1.5rem;
    }
    
    .keywords-footer p {
        font-size: 0.8rem;
    }
}
