:root {
    --primary-color: #00d4ff;
    --secondary-color: #0099ff;
}

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

body {
    width: 100vw;
    height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow: hidden;
    background: #0f0f0f;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 1920px;
    height: 1080px;
    max-width: 100vw;
    max-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto 1fr auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.container.active {
    opacity: 1;
}

.sidebar {
    grid-row: 1 / -1;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid #333;
}

.logo-section {
    text-align: center;
    margin-bottom: 80px;
}

.logo {
    font-size: 48px;
    margin-bottom: 20px;
}

.property-name {
    font-size: 28px;
    color: #888;
    font-weight: 300;
}

.welcome-section {
    animation: slideInLeft 0.8s ease;
}

.welcome-label {
    font-size: 32px;
    color: #666;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 1px;
}

.guest-name-modern {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    word-wrap: break-word;
    line-height: 1.2;
}

.date-time {
    font-size: 36px;
    color: #888;
    font-weight: 300;
}

.weather-sidebar {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.weather-sidebar h3 {
    font-size: 24px;
    color: #888;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.weather-main {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.weather-icon-sidebar {
    font-size: 72px;
    margin-right: 20px;
}

.temp-sidebar {
    font-size: 64px;
    font-weight: 700;
}

.weather-details-sidebar {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
}

.main-area {
    grid-column: 2;
    grid-row: 1 / -1;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
    animation: fadeInDown 0.8s ease;
}

.date-display {
    font-size: 32px;
    color: #666;
}

.status-badge {
    background: #00d4ff;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.activities-modern {
    flex: 1;
    animation: fadeIn 1s ease;
    margin-bottom: 50px;
    padding: 10px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #fff;
}

.activity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-height: 600px;
    overflow: visible;
    padding: 5px;
}

.activity-card-modern {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
    cursor: default;
}

.event-date {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
    text-transform: capitalize;
}

.activity-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.activity-icon-modern {
    font-size: 56px;
    margin-right: 20px;
}

.activity-title {
    font-size: 32px;
    font-weight: 600;
}

.activity-description {
    font-size: 22px;
    color: #888;
    line-height: 1.6;
}

.footer-bar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideInUp 0.8s ease;
}

.checkout-modern {
    display: flex;
    align-items: center;
}

.checkout-icon-modern {
    font-size: 42px;
    margin-right: 20px;
}

.checkout-details {
    font-size: 24px;
    color: #888;
}

.checkout-time {
    font-size: 42px;
    font-weight: 700;
    color: #00d4ff;
}

.rules-modern {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    line-height: 1.8;
}

/* Countdown Mode */
.countdown-container {
    display: none;
    width: 1920px;
    height: 1080px;
    max-width: 100vw;
    max-height: 100vh;
    padding: 80px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.countdown-container.active {
    display: flex;
    animation: fadeInCountdown 0.5s ease-in-out forwards;
}

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

.countdown-header {
    font-size: 56px;
    color: #666;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.countdown-display {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
}

.countdown-unit {
    text-align: center;
}

.countdown-number {
    font-size: 180px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-label {
    font-size: 36px;
    color: #666;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.next-booking {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 30px;
    padding: 60px 100px;
    text-align: center;
}

.next-booking h3 {
    font-size: 42px;
    color: #666;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.next-guest-name {
    font-size: 64px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
}

.next-guest-count {
    font-size: 36px;
    color: #888;
}

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

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

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

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

.mode-toggle {
    display: none;
}

.loading {
    opacity: 0.5;
}

.error {
    color: #ff4444;
}

@media (max-width: 1920px) {
    body {
        width: 100vw;
        height: 100vh;
    }
}

.fly-icon {
    background: transparent;
    width: 42px;
    height: 42px;
    object-fit: contain;
    vertical-align: middle;
}
