* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%
}

html {
    overflow-x: hidden;
    width: 100%;
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 30%, #FFD700 70%, #FFA500 100%);
}

html::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(139, 0, 0, 0.5);
    pointer-events: none;
    z-index: -1;
}

body {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 30%, #FFD700 70%, #FFA500 100%);
    background-attachment: fixed;
    background-size: cover;
    color: #FFF8DC;
    display: flex;
    flex-direction: column;
    font-family: 'Verdana', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

body::before {
    background: rgba(139, 0, 0, 0.5);
    bottom: 0;
    content: '';
    left: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
}

.contact-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
}

.contact-info {
    color: #FFA500;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    transition: transform 0.3s;
}

.contact-info:hover {
    transform: scale(1.1);
}

.contact-item {
    color: #FFF8DC;
}

.contact-label {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-row {
    background: transparent;
    border-top: 4px solid #FFD700;
    margin-top: auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.contact-row h2 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.copied-bubble {
    background: rgba(76, 175, 80, 0.9);
    border-radius: 5px;
    color: #FFF;
    display: none;
    font-size: 0.8rem;
    left: 50%;
    padding: 5px 10px;
    position: absolute;
    top: -30px;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copied-bubble.show {
    display: block;
    opacity: 1;
}

.event {
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #FFA500;
    border-radius: 10px;
    cursor: pointer;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.event:hover {
    transform: scale(1.05);
}

.event-date {
    color: #FFD700;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.event-location {
    color: #FFA500;
    font-size: 0.9rem;
}

.event-title {
    color: #FFF8DC;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

h1 {
    color: #FFD700;
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
}

.header {
    background: transparent;
    border-bottom: 4px solid #FFD700;
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.2);
    padding: 3rem 2rem;
    position: relative;
    text-align: center;
    z-index: 1;
}

.media-box {
    align-items: center;
    background: #333;
    border: 3px solid #FFD700;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    color: #888;
    display: flex;
    font-size: 1.5rem;
    height: 300px;
    justify-content: center;
}

.media-row {
    background: transparent;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    max-width: 1600px;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.schedule-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    max-width: 1400px;
}

.schedule-row {
    background: transparent;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.schedule-row h2 {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.subtitle {
    color: #FFA500;
    font-size: 1.5rem;
}

.media-box img {
    border-radius: 7px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.media-row {
    overflow: hidden;
    position: relative;
}

.arrow {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid #FFD700;
    border-radius: 50%;
    color: #FFD700;
    cursor: pointer;
    font-size: 2rem;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    z-index: 2;
}

.arrow:hover {
    background: rgba(255, 215, 0, 0.3);
}

.arrow.left { left: 0px; }
.arrow.right { right: 0px; }

.media-container {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.media-box {
    flex-shrink: 0;
    width: calc(77% - 1rem);
}

@media (max-width: 760px) {
    .media-row {
        padding: 1rem 0.5rem;
        max-width: 100vw;
    }
    
    .media-box {
        width: calc(100vw - 4rem);
    }
    
    .schedule-grid,
    .contact-grid {
        padding: 0 0.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
}