@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Mulish:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Noto+Sans:wght@300;400;700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #2e1f12;
    --secondary-color: #8b4513;
    --accent-color: #d4af37;
    --gold-color: #d4af37;
    --silver-color: #c0c0c0;
    --text-primary: #2c2c2c;
    --text-secondary: #6b5e52;
    --text-dark: #1b140e;
    --gradient-primary: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 100%);
    --gradient-accent: linear-gradient(135deg, #d4af37 0%, #f1d873 100%);
    --gradient-gold: linear-gradient(135deg, #f1d873 0%, #d4af37 100%);
    --shadow-soft: 0 10px 30px rgba(46, 31, 18, 0.08);
    --shadow-medium: 0 20px 60px rgba(46, 31, 18, 0.12);
    --shadow-strong: 0 30px 80px rgba(46, 31, 18, 0.18);
    --border-radius: 18px;
    --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

body {
    font-family: 'Mulish', sans-serif;
    background: var(--gradient-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(60% 40% at 10% 90%, rgba(212, 175, 55, 0.10), transparent 60%),
        radial-gradient(40% 30% at 85% 15%, rgba(139, 69, 19, 0.10), transparent 60%),
        radial-gradient(35% 35% at 40% 30%, rgba(44, 85, 48, 0.10), transparent 60%),
        radial-gradient(20% 20% at 75% 70%, rgba(212, 175, 55, 0.08), transparent 70%);
    z-index: -1;
    animation: backgroundShift 24s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0) scale(1); }
    25% { transform: translateX(-24px) translateY(-12px) scale(1.01); }
    50% { transform: translateX(14px) translateY(18px) scale(1.02); }
    75% { transform: translateX(-8px) translateY(-6px) scale(1.01); }
}

header {
    background: #fdfcfa;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
header.scrolled {
    background: #fdfcfa;
    box-shadow: var(--shadow-medium);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-branding {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.header-branding img {
    height: 120px;
    width: auto;
    transition: var(--transition);
}

.header-branding img:hover {
    transform: scale(1.05);
}

.waao-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.waao-logo-link:hover {
    transform: scale(1.08);
}

.waao-logo-link.text-logo {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: #333;
    letter-spacing: 1px;
    text-decoration: none;
    padding-left: 20px;
    border-left: 2px solid #e1d8b9;
}

.waao-logo-link.text-logo span {
    color: #b8860b;
    font-family: 'Playfair Display', serif;
}



#main-nav-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition);
}
.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.menu-open .bar:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.menu-toggle.menu-open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.menu-open .bar:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

#mobile-nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    max-height: 0;
    background: #fdfcfa;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-medium);
    z-index: 999;
    transform: translateY(-100%);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

#mobile-nav-menu.menu-open {
    transform: translateY(0);
    max-height: 400px;
    padding: 2rem 0;
}

#mobile-nav-menu .main-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
}

#mobile-nav-menu .nav-link {
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
#mobile-nav-menu .nav-link:hover,
#mobile-nav-menu .nav-link.active {
    color: var(--primary-color);
}

main {
    flex-grow: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.intro-section {
    text-align: left;
    padding: 6rem 0 4rem;
    position: relative;
    transform: rotate(-0.35deg);
}
.intro-section h2,
.intro-section p {
    transform: rotate(0.35deg);
}
.intro-section::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%) rotate(0.35deg);
    width: min(880px, 90%);
    height: 14px;
    background: var(--cream-2);
    clip-path: polygon(0% 60%, 5% 30%, 10% 58%, 15% 35%, 20% 55%, 25% 32%, 30% 54%, 35% 34%, 40% 52%, 45% 36%, 50% 50%, 55% 35%, 60% 56%, 65% 34%, 70% 58%, 75% 32%, 80% 55%, 85% 35%, 90% 54%, 95% 32%, 100% 58%, 100% 100%, 0% 100%);
    opacity: 0.75;
}

.intro-section h2 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.intro-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.intro-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.competition-details {
    margin: 4rem 0;
}

.competition-details h2 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.competition-details h2::after {
    content: '♪';
    display: block;
    font-size: 2rem;
    color: var(--accent-color);
    margin-top: 1rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.grid-item {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(139, 69, 19, 0.15);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2%;
    width: 104%;
    height: 16px;
    background: var(--gradient-accent);
    clip-path: polygon(0% 60%, 5% 30%, 10% 58%, 15% 35%, 20% 55%, 25% 32%, 30% 54%, 35% 34%, 40% 52%, 45% 36%, 50% 50%, 55% 35%, 60% 56%, 65% 34%, 70% 58%, 75% 32%, 80% 55%, 85% 35%, 90% 54%, 95% 32%, 100% 58%, 100% 100%, 0% 100%);
}
.grid-item::after {
    content: '';
    position: absolute;
    left: -2%;
    width: 104%;
    bottom: -1px;
    height: 24px;
    background: var(--cream-1);
    clip-path: polygon(0% 30%, 5% 60%, 10% 35%, 15% 62%, 20% 40%, 25% 65%, 30% 45%, 35% 68%, 40% 50%, 45% 70%, 50% 52%, 55% 68%, 60% 44%, 65% 66%, 70% 40%, 75% 64%, 80% 38%, 85% 60%, 90% 35%, 95% 58%, 100% 32%, 100% 100%, 0% 100%);
    filter: drop-shadow(0 -2px 6px rgba(0,0,0,0.06));
}
.grid-item:nth-child(odd) { transform: rotate(-1.6deg); }
.grid-item:nth-child(even) { transform: rotate(1.3deg); }
.grid-item:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.01);
    box-shadow: var(--shadow-strong);
    border-color: rgba(212, 175, 55, 0.45);
}
.grid-item h3 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}
.grid-item p { color: var(--text-secondary); }

.highlight {
    color: var(--gold-color);
    font-weight: 600;
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(139,69,19,0.18));
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.25);
}
.cta-section::after {
    content: '';
    position: absolute;
    left: -1.5%;
    width: 103%;
    bottom: -1px;
    height: 28px;
    background: var(--cream-1);
    clip-path: polygon(0% 30%, 6% 62%, 12% 35%, 18% 64%, 24% 38%, 30% 66%, 36% 40%, 42% 68%, 48% 42%, 54% 70%, 60% 40%, 66% 66%, 72% 38%, 78% 64%, 84% 36%, 90% 60%, 96% 34%, 100% 58%, 100% 100%, 0% 100%);
    filter: drop-shadow(0 -2px 8px rgba(0,0,0,0.06));
}
.cta-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
    max-width: 980px;
}
.cta-box {
    transform: rotate(-0.8deg);
}
.cta-box:nth-child(2) {
    transform: rotate(1.2deg) translateY(12px);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-box h2 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-secondary {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(212,175,55,0.25);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    cursor: pointer;
}
.btn-secondary:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 16px 32px rgba(212,175,55,0.35);
}

.announcement {
    text-align: center;
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    margin: 4rem 0;
}

.announcement h2 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.announcement p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    color: #e0e0e0;
    transition: var(--transition);
}

.copyright {
    margin-top: 1.5rem;
    color: #c7c7c7;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

footer {
    background: #2e1f12;
    color: #e0e0e0;
    padding: 3rem 2rem;
    text-align: center;
    font-size: 0.9rem;
    margin-top: auto;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a,
.footer-links a:visited {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-info {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #c7c7c7;
    line-height: 1.6;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.copyright {
    margin-top: 1.5rem;
    color: #c7c7c7;
}

.regulation-section {
    padding: 2rem 0;
}

.regulation-section h2 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.regulation-section h3 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 3rem 0 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.regulation-section h3::before {
    content: '§';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: var(--accent-color);
}

.regulation-section p,
.regulation-section ul,
.regulation-section ol {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.regulation-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.category-group {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.category-group h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.note {
    background: rgba(233, 69, 96, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
}

.section-separator {
    border: none;
    height: 2px;
    background: var(--gradient-accent);
    margin: 3rem auto;
    width: 100px;
    border-radius: 1px;
}

.application-section {
    padding: 2rem 0;
}

.application-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.application-section ol,
.application-section ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.application-section h2 + p {
    text-align: center;
    margin-bottom: 2rem;
}

.application-section li {
    margin-bottom: 1rem;
}

#paymentButton,
#formLinkButton {
    background: var(--gradient-gold);
    color: var(--primary-color);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(212,175,55,0.25);
    display: block;
    margin: 2rem auto;
    max-width: 400px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
#paymentButton:hover,
#formLinkButton:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 16px 32px rgba(212,175,55,0.35);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.payment-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(139, 69, 19, 0.15);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.payment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(212, 175, 55, 0.4);
}

.payment-card h3 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.payment-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.payment-price .currency {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.payment-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-pay {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    transition: var(--transition);
    box-shadow: 0 8px 15px rgba(212,175,55,0.2);
}

.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212,175,55,0.3);
}

.results-section {
    padding: 2rem 0;
}

.results-section h2 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.results-section h3 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin: 3rem 0 2rem;
    color: var(--text-primary);
    position: relative;
}

.results-section h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

#results-announcement-pending {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-style: italic;
    font-size: 1.1rem;
}

.grand-prize-solo-card-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.grand-prize-card {
    background: var(--gradient-gold);
    color: var(--primary-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-strong);
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

.grand-prize-card::before {
    content: '♔';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    color: rgba(26, 26, 46, 0.2);
}

.grand-prize-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.winner-photo-lg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 1rem auto;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.winner-name-lg {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.winner-quote {
    font-style: italic;
    line-height: 1.6;
    opacity: 0.8;
}

.professional-winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.winner-card-highlight {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.winner-card-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
}

.winner-card-highlight:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.winner-card-highlight h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.winner-rank-list {
    list-style: none;
    text-align: left;
}

.winner-rank-list li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.winner-rank-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.detailed-results-notice {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-style: italic;
    color: var(--text-secondary);
}

.contact-section {
    padding: 2rem 0;
}

.contact-section h2 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.contact-section h3 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 2rem 0 1rem;
}

.contact-section a {
    color: var(--gold-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-section a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.contact-note {
    background: rgba(233, 69, 96, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .header-inner {
        padding: 0 1.5rem;
        margin: 0 auto;
        max-width: calc(100% - 30px);
    }
    
    main {
        padding: 0 1.5rem;
        margin: 0 auto;
        max-width: calc(100% - 30px);
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .professional-winners-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .cta-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 970px) {
    .menu-toggle {
        display: flex;
    }

    #main-nav-wrapper {
        display: none;
    }

    .header-inner {
        padding: 0 2rem;
        margin: 0 15px;
    }
    
    main {
        padding: 0 2rem;
        margin: 0 15px;
    }
    
    .intro-section {
        transform: none;
        text-align: center;
    }
    .intro-section h2,
    .intro-section p {
        transform: none;
    }
    .intro-section::after {
        display: none;
    }
    
    .cta-container {
        display: flex;
        flex-direction: column;
    }
    
    .cta-box {
        transform: none;
        text-align: center;
    }
    .cta-box:nth-child(2) {
        transform: none;
        transform: translateY(0);
    }
    
    .grid-item {
        padding: 2rem;
    }
    
    .professional-winners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .grand-prize-card {
        padding: 2rem;
    }
}

@media (max-width: 530px) {
    .header-branding img {
        height: 100px;
    }
    .waao-logo-link.text-logo {
        font-size: 1.4rem;
        padding-left: 15px;
    }
    .header-branding {
        gap: 15px;
    }
    #mobile-nav-menu {
        top: 110px;
    }
}

@media (max-width: 460px) {
    .header-branding {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .waao-logo-link.text-logo {
        position: relative;
        padding-left: 40px;
        border-left: none;
        padding-top: 15px;
        margin-top: 10px;
    }
    .waao-logo-link.text-logo::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-40%);
        width: 120px;
        height: 2px;
        background-color: #e1d8b9;
    }
    #mobile-nav-menu {
        top: 195px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 0 2rem;
        margin: 0 15px;
    }
    
    main {
        padding: 0 2rem;
        margin: 0 15px;
    }
    
    .intro-section h2 {
        font-size: 2rem;
    }
    
    .intro-section p {
        font-size: 1rem;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
    
    .btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .grid-item {
        padding: 1.5rem;
    }
    
    .regulation-section h3 {
        font-size: 1.5rem;
        padding-left: 1.5rem;
    }
    
    .winner-card-highlight {
        padding: 1.5rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grid-item,
.winner-card-highlight,
    .cta-box {
    animation: fadeInUp 0.6s ease-out;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-color);
}

.grid-item {
    position: relative;
    overflow: visible;
    background: linear-gradient(180deg, rgba(212,175,55,0.25), rgba(139,69,19,0.20));
    clip-path: polygon(
        2% 5%, 6% 0%, 12% 4%, 18% 1%, 24% 6%, 31% 2%, 38% 5%, 46% 0%, 54% 4%, 61% 1%, 69% 6%, 76% 2%, 83% 5%, 90% 0%, 96% 4%,
        100% 8%, 98% 16%, 100% 22%, 97% 29%, 100% 36%, 97% 43%, 100% 51%, 97% 58%, 100% 66%, 97% 73%, 100% 80%, 97% 87%, 100% 94%,
        95% 100%, 88% 96%, 82% 100%, 76% 95%, 69% 100%, 62% 96%, 56% 100%, 49% 96%, 42% 100%, 35% 96%, 28% 100%, 21% 95%, 14% 100%, 8% 96%, 3% 100%,
        0% 92%, 3% 85%, 0% 78%, 3% 70%, 0% 63%, 3% 56%, 0% 49%, 3% 42%, 0% 35%, 3% 28%, 0% 21%, 3% 14%, 0% 8%
    );
    box-shadow: var(--shadow-soft);
}
.grid-item::before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 12px;
    background:
        linear-gradient(180deg, rgba(250,249,247,0.98), rgba(250,249,247,0.96)),
        repeating-linear-gradient(0deg, rgba(0,0,0,0.03) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(90deg, rgba(0,0,0,0.02) 0 2px, transparent 2px 4px);
    clip-path: polygon(
        3% 7%, 8% 1%, 16% 6%, 23% 2%, 30% 7%, 37% 3%, 45% 6%, 52% 1%, 60% 5%, 67% 2%, 74% 7%, 81% 3%, 89% 6%, 95% 1%, 99% 6%,
        99% 14%, 97% 22%, 99% 30%, 96% 38%, 99% 46%, 96% 54%, 99% 62%, 96% 70%, 99% 78%, 96% 86%, 99% 94%,
        92% 99%, 84% 94%, 77% 99%, 70% 94%, 63% 99%, 56% 94%, 49% 99%, 42% 94%, 35% 99%, 28% 94%, 21% 99%, 14% 94%, 7% 99%, 2% 94%,
        1% 86%, 4% 78%, 1% 70%, 4% 62%, 1% 54%, 4% 46%, 1% 38%, 4% 30%, 1% 22%, 4% 14%
    );
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
.grid-item > * { position: relative; z-index: 1; }
.grid-item:hover { box-shadow: var(--shadow-strong); }

.cta-box {
    position: relative;
    overflow: visible;
    background: linear-gradient(180deg, rgba(212,175,55,0.25), rgba(139,69,19,0.20));
    clip-path: polygon(
        2% 5%, 6% 0%, 12% 4%, 18% 1%, 24% 6%, 31% 2%, 38% 5%, 46% 0%, 54% 4%, 61% 1%, 69% 6%, 76% 2%, 83% 5%, 90% 0%, 96% 4%,
        100% 8%, 98% 16%, 100% 22%, 97% 29%, 100% 36%, 97% 43%, 100% 51%, 97% 58%, 100% 66%, 97% 73%, 100% 80%, 97% 87%, 100% 94%,
        95% 100%, 88% 96%, 82% 100%, 76% 95%, 69% 100%, 62% 96%, 56% 100%, 49% 96%, 42% 100%, 35% 96%, 28% 100%, 21% 95%, 14% 100%, 8% 96%, 3% 100%,
        0% 92%, 3% 85%, 0% 78%, 3% 70%, 0% 63%, 3% 56%, 0% 49%, 3% 42%, 0% 35%, 3% 28%, 0% 21%, 3% 14%, 0% 8%
    );
    box-shadow: 0 10px 20px rgba(212,175,55,0.18);
}
.cta-box::before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 12px;
    background:
        linear-gradient(180deg, rgba(250,249,247,0.98), rgba(250,249,247,0.96)),
        repeating-linear-gradient(0deg, rgba(0,0,0,0.03) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(90deg, rgba(0,0,0,0.02) 0 2px, transparent 2px 4px);
    clip-path: polygon(
        3% 7%, 8% 1%, 16% 6%, 23% 2%, 30% 7%, 37% 3%, 45% 6%, 52% 1%, 60% 5%, 67% 2%, 74% 7%, 81% 3%, 89% 6%, 95% 1%, 99% 6%,
        99% 14%, 97% 22%, 99% 30%, 96% 38%, 99% 46%, 96% 54%, 99% 62%, 96% 70%, 99% 78%, 96% 86%, 99% 94%,
        92% 99%, 84% 94%, 77% 99%, 70% 94%, 63% 99%, 56% 94%, 49% 99%, 42% 94%, 35% 99%, 28% 94%, 21% 99%, 14% 94%, 7% 99%, 2% 94%,
        1% 86%, 4% 78%, 1% 70%, 4% 62%, 1% 54%, 4% 46%, 1% 38%, 4% 30%, 1% 22%, 4% 14%
    );
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
.cta-box > * { position: relative; z-index: 1; }

.regulation-section .category-group {
    transform: rotate(0.6deg);
}
.regulation-section .category-group > * {
    transform: rotate(-0.6deg);
}
.regulation-section h3 {
    transform: rotate(-0.6deg);
}
    
@media (max-width: 890px) {
    .grid-item,
    .cta-box {
        clip-path: none;
    }
    .grid-item::after,
    .cta-box::after {
        inset: 8px;
    }
    .regulation-section .category-group,
    .regulation-section .category-group > *,
    .regulation-section h3 {
        transform: none;
    }
}

.grid-item,
.cta-box {
    position: relative;
    overflow: visible;
    background: linear-gradient(180deg, rgba(212,175,55,0.25), rgba(139,69,19,0.20));
    clip-path: polygon(
        2% 5%, 6% 0%, 12% 4%, 18% 1%, 24% 6%, 31% 2%, 38% 5%, 46% 0%, 54% 4%, 61% 1%, 69% 6%, 76% 2%, 83% 5%, 90% 0%, 96% 4%,
        100% 8%, 98% 16%, 100% 22%, 97% 29%, 100% 36%, 97% 43%, 100% 51%, 97% 58%, 100% 66%, 97% 73%, 100% 80%, 97% 87%, 100% 94%,
        95% 100%, 88% 96%, 82% 100%, 76% 95%, 69% 100%, 62% 96%, 56% 100%, 49% 96%, 42% 100%, 35% 96%, 28% 100%, 21% 95%, 14% 100%, 8% 96%, 3% 100%,
        0% 92%, 3% 85%, 0% 78%, 3% 70%, 0% 63%, 3% 56%, 0% 49%, 3% 42%, 0% 35%, 3% 28%, 0% 21%, 3% 14%, 0% 8%
    );
}
.grid-item::before,
.cta-box::before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 12px;
    background:
        linear-gradient(180deg, rgba(250,249,247,0.96), rgba(250,249,247,0.94)),
        repeating-linear-gradient(0deg, rgba(0,0,0,0.025) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(90deg, rgba(0,0,0,0.02) 0 2px, transparent 2px 4px);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.045);
    clip-path: none;
}
.grid-item,
.cta-box {
    padding: 35px;
    background-image:
        linear-gradient(180deg, rgba(241,237,231,0.98), rgba(234,229,221,0.96)),
        repeating-linear-gradient(0deg, rgba(0,0,0,0.02) 0 1px, transparent 1px 3px),
        linear-gradient(180deg, rgba(212,175,55,0.25), rgba(139,69,19,0.20));
    background-clip: padding-box, padding-box, border-box;
    background-origin: padding-box, padding-box, border-box;
    border: 0 solid transparent;
}
.grid-item::before,
.cta-box::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #f7e7a5 0%, #d4af37 65%, #b08a2e 100%);
    border: 2px solid rgba(139,69,19,0.5);
    box-shadow: 0 2px 6px rgba(0,0,0,0.18), inset 0 1px 2px rgba(255,255,255,0.6);
}
.grid-item::after,
.cta-box::after { content: none; }

.grid-item:nth-child(odd) { transform: rotate(-1.2deg); }
.grid-item:nth-child(even) { transform: rotate(1.0deg); }
.cta-box:nth-child(odd) { transform: rotate(-1.2deg); }
.cta-box:nth-child(even) { transform: rotate(1.0deg); }
.grid-item:hover,
.cta-box:hover { transform: rotate(0deg) translateY(-10px) scale(1.01); }

.cta-box h2 { color: var(--primary-color); }
.cta-box p { color: var(--text-secondary); }


.cta-section { background: transparent; border: none; }
.cta-section::before,
.cta-section::after { content: none; }

@media (max-width: 890px) {
    .grid-item,
    .cta-box {
        clip-path: none;
        transform: none !important;
    }
    .grid-item::before,
    .cta-box::before {
        inset: 8px; clip-path: none;
    }
    .payment-grid {
        grid-template-columns: 1fr;
    }
}

.intro-section {
    text-align: left;
}
.intro-section h2 {
    text-align: left;
}
.intro-section h2::after {
    left: 0;
    transform: none;
}
.intro-section p {
    text-align: left;
    margin: 0;
}
@media (min-width: 891px) {
    .intro-section { margin-left: 0; }
}
@media (max-width: 890px) {
    .intro-section { 
        margin-left: 0;
    }
}

@media (min-width: 891px) {
    .intro-section {
        transform: rotate(-3deg);
    }
    .intro-section > * {
        transform: rotate(3deg);
    }
}
@media (max-width: 890px) {
    .intro-section,
    .intro-section > * { transform: none; }
}

@media (max-width: 890px) {
    .grid-item,
    .cta-box {
        clip-path: polygon(
            2% 5%, 6% 0%, 12% 4%, 18% 1%, 24% 6%, 31% 2%, 38% 5%, 46% 0%, 54% 4%, 61% 1%, 69% 6%, 76% 2%, 83% 5%, 90% 0%, 96% 4%,
            100% 8%, 98% 16%, 100% 22%, 97% 29%, 100% 36%, 97% 43%, 100% 51%, 97% 58%, 100% 66%, 97% 73%, 100% 80%, 97% 87%, 100% 94%,
            95% 100%, 88% 96%, 82% 100%, 76% 95%, 69% 100%, 62% 96%, 56% 100%, 49% 96%, 42% 100%, 35% 96%, 28% 100%, 21% 95%, 14% 100%, 8% 96%, 3% 100%,
            0% 92%, 3% 85%, 0% 78%, 3% 70%, 0% 63%, 3% 56%, 0% 49%, 3% 42%, 0% 35%, 3% 28%, 0% 21%, 3% 14%, 0% 8%
        );
    }
    .grid-item::before,
    .cta-box::before {
        inset: 18px;
    }
}

.announcement {
    transform: rotate(6deg);
}
.announcement > * {
    transform: rotate(-6deg);
}
@media (max-width: 890px) {
    .announcement,
    .announcement > * { transform: none; }
}

@media (max-width: 1024px) and (min-width: 891px) {
    .intro-section {
        transform: rotate(-2deg);
    }
    .intro-section > * {
        transform: rotate(2deg);
    }
    .announcement {
        transform: rotate(4deg);
    }
    .announcement > * {
        transform: rotate(-4deg);
    }
}

@media (max-width: 970px) {
    #mobile-nav-menu { top: 130px; }
}

html { -webkit-text-size-adjust: 100%; }
body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
    header { background: #fdfcfa; }
    #mobile-nav-menu { background: #fdfcfa; }
}

.grid-item,
.cta-box {
    will-change: transform, clip-path;
    contain: paint;
}

@media (max-width: 970px) {
    #mobile-nav-menu { top: calc(130px + env(safe-area-inset-top)); }
}
@media (max-width: 530px) {
    #mobile-nav-menu { top: calc(110px + env(safe-area-inset-top)); }
}
@media (max-width: 460px) {
    #mobile-nav-menu { top: calc(195px + env(safe-area-inset-top)); }
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition: none !important; }
}