@font-face {
    font-family: 'Have Heart One';
    src: url('assets/have-heart-one.otf') format('opentype');
}
@font-face {
    font-family: 'TradeGothic LT Bold';
    src: url('assets/TradeGothic LT Bold Regular.ttf') format('truetype');
}

body { margin: 0; background: #fff; font-family: sans-serif; color: #333; }
.custom-font { font-family: 'Have Heart One', cursive; }
.hidden { display: none !important; }
.blurred { filter: blur(20px); pointer-events: none; }

/* The Rounded White Border Banner */
.border-wrapper { padding: 20px; background: #fff; }
.main-banner {
    height: 550px;
    border-radius: 25px;
    background: url('assets/banner.jpg') center/cover no-repeat;
    position: relative;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo { width: 140px; align-self: center; }
.banner-bottom-left h1 { font-size: 4.5rem; color: #fff; margin: 0; font-family: 'TradeGothic LT Bold', sans-serif; }
.banner-bottom-left p { font-size: 1.6rem; color: #fff; margin: 10px 0 30px; }

.gold-btn, .submit-btn, .vote-btn {
    background: #c5a059; color: #fff; border: none; padding: 15px 35px;
    border-radius: 4px; cursor: pointer; font-weight: bold;
}

/* Form Overlay */
.overlay {
    position: fixed; inset: 0; background: rgba(255,255,255,0.95);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
}
.form-card { background: #fff; padding: 40px; border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); width: 380px; text-align: center; }
.form-card input { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box; }

/* Grid */
.subheading { padding: 50px 0 20px 5%; font-size: 3rem; }
.grid-container {
    display: grid; gap: 30px; padding: 0 5% 100px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .grid-container { grid-template-columns: repeat(3, 1fr); } }

.video-box iframe { width: 100%; aspect-ratio: 9/16; border-radius: 12px; background: #eee; }
.video-info { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; }
.vote-btn:disabled { background: #bbb; cursor: not-allowed; }

/* Footer */
.site-footer { background: #F8EEDF; padding: 60px 5% 30px; border-radius: 40px 40px 0 0; color: #7D7D7D; font-family: 'TradeGothic LT Bold'}
.footer-top { display: flex; justify-content: space-between; }
.footer-col { width: 25%; }
.footer-col.discover-more { width: 50%; }
.footer-links { display: flex; gap: 50px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-logo { width: 110px; margin-bottom: 20px; }
.footer-bottom { border-top: 1px solid #ddd; margin-top: 50px; padding-top: 20px; display: flex; justify-content: space-between; font-size: 0.8rem; }