@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8eaed;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 183, 77, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    height: 100vh;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 183, 77, 0.2);
    padding: 40px 20px;
    z-index: 1000;
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

header img {
    height: 120px;
    width: auto;
    margin-bottom: 60px;
    filter: drop-shadow(0 0 20px rgba(255, 183, 77, 0.3));
}

.header-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.header-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-bottom: 40px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease-in-out;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffb74d, #ffa726);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 183, 77, 0.5);
}

.menu-toggle.menu-open .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.menu-toggle.menu-open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.menu-open .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

#main-nav-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #e8eaed;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.1em;
    padding: 20px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 183, 77, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(255, 183, 77, 0.1);
    color: #ffb74d;
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 183, 77, 0.2);
}

.nav-link.active {
    background: linear-gradient(135deg, #ffb74d, #ffa726);
    color: #1a1a2e;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(255, 183, 77, 0.4);
    transform: translateX(15px);
}

main {
    flex-grow: 1;
    margin-left: 300px;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding: 60px 80px 60px 60px;
    min-height: 100vh;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #e8eaed;
    position: relative;
    width: calc(100% - 300px);
}

section {
    margin: 80px 0;
    position: relative;
}

section:nth-child(odd) {
    padding-left: 0;
    padding-right: 0;
}

section:nth-child(even) {
    padding-left: 200px;
    padding-right: 0;
}

section:nth-child(odd) .section-content {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-radius: 0 50px 0 50px;
    border: 1px solid rgba(255, 183, 77, 0.1);
    padding: 60px;
    transform: skewY(-2deg);
}

section:nth-child(even) .section-content {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-radius: 50px 0 50px 0;
    border: 1px solid rgba(255, 183, 77, 0.1);
    padding: 60px;
    transform: skewY(2deg);
}

section:nth-child(odd) .section-content > *,
section:nth-child(even) .section-content > * {
    transform: skewY(2deg);
}

section:nth-child(even) .section-content > * {
    transform: skewY(-2deg);
}

h2 {
    font-family: 'Crimson Text', serif;
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffb74d 0%, #ffa726 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    text-transform: none;
    letter-spacing: -0.02em;
}

h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffb74d, transparent);
    margin: 25px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 183, 77, 0.5);
}

.detail-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 50px;
    align-items: center;
    position: relative;
}

.grid-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 183, 77, 0.15);
    padding: 40px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
}

.grid-item:nth-child(1) {
    border-radius: 60px 20px 60px 20px;
    transform: translateX(-100px) rotate(-3deg);
    align-self: flex-start;
}

.grid-item:nth-child(2) {
    border-radius: 20px 60px 20px 60px;
    transform: translateX(100px) rotate(3deg);
    align-self: flex-end;
}

.grid-item:nth-child(3) {
    border-radius: 40px 80px 40px 80px;
    transform: translateX(-50px) rotate(-1deg);
    align-self: flex-start;
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 183, 77, 0.05) 0%, rgba(120, 119, 198, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.grid-item:hover::before {
    opacity: 1;
}

.grid-item:hover {
    transform: scale(1.05) rotate(0deg) translateX(0);
    border-color: rgba(255, 183, 77, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 183, 77, 0.2);
}

.grid-item h3 {
    font-family: 'Crimson Text', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffb74d;
    margin-bottom: 25px;
    position: relative;
    text-align: center;
}

.grid-item h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffb74d, transparent);
    border-radius: 2px;
}

.grid-item p, .intro-section p, .announcement p, .regulation-section p, .cta-box p, .application-section p {
    font-size: 1.1em;
    color: rgba(232, 234, 237, 0.9);
    line-height: 1.7;
    padding: 0;
    text-align: center;
    font-weight: 400;
}

.small-text {
    font-size: 0.95em !important;
    color: rgba(232, 234, 237, 0.7) !important;
    margin-top: 15px;
    line-height: 1.6;
    padding: 15px 20px;
    background: rgba(255, 183, 77, 0.05);
    border-radius: 15px;
    border-left: 4px solid rgba(255, 183, 77, 0.3);
}

.highlight {
    color: #ffb74d;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(255, 183, 77, 0.3);
}

.cta-section {
    margin: 100px 0;
    padding: 0;
    position: relative;
    background: none;
    border: none;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    gap: 0;
    align-items: stretch;
    min-height: 450px;
}

.cta-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    padding: 60px 40px;
    transform: skewX(-3deg);
}

.cta-box:first-child {
    background: rgba(255, 183, 77, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 183, 77, 0.2);
    border-radius: 30px 0 0 30px;
}

.cta-box:last-child {
    background: rgba(120, 119, 198, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(120, 119, 198, 0.2);
    border-radius: 0 30px 30px 0;
}

.cta-box:hover {
    filter: brightness(1.2);
    transform: scale(1.03) skewX(0deg);
    z-index: 5;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-transform: none;
}
.cta-box > * {
    transform: skewX(3deg);
}


.cta-box h2::after {
    display: none;
}

.cta-box p {
    margin-bottom: 30px;
    padding: 0 20px;
    color: rgba(232, 234, 237, 0.8);
    font-size: 1.1em;
}

.btn-secondary {
    display: inline-block;
    background: linear-gradient(135deg, #ffb74d, #ffa726);
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    padding: 18px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 183, 77, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 183, 77, 0.4);
}

footer {
    margin-left: 300px;
    width: calc(100% - 300px);
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 183, 77, 0.2);
    padding: 30px 80px 30px 60px;
    text-align: center;
    font-size: 0.9em;
    color: rgba(232, 234, 237, 0.7);
}
.footer-links {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-media-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #e8eaed;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 183, 77, 0.2);
}

.social-icon:hover {
    background-color: #ffb74d;
    color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 183, 77, 0.3);
}

.regulation-section h3 {
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffb74d;
    margin: 40px 0 25px;
    position: relative;
    text-align: center;
}

.regulation-section h3::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffb74d, transparent);
    border-radius: 2px;
}

.regulation-section ul, .regulation-section ol, .regulation-section h4 {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 1.2em;
    color: rgba(232, 234, 237, 0.9);
}

.regulation-section ul li, .regulation-section ol li {
    margin-bottom: 0.8em;
    color: rgba(232, 234, 237, 0.9);
    padding-left: 10px;
}

.regulation-section strong:first-child {
    font-weight: 600;
    color: #ffb74d;
}

.category-group {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 183, 77, 0.15);
    border-radius: 25px;
    padding: 35px;
    margin-bottom: 30px;
    position: relative;
    transform: rotate(-0.5deg);
}

.category-group:nth-child(even) {
    transform: rotate(0.5deg);
}

.category-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 183, 77, 0.3), transparent);
}

.category-group h4 {
    font-family: 'Crimson Text', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffb74d;
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 183, 77, 0.2);
    text-align: center;
}

.category-group ul li {
    list-style: none;
    margin-left: 0;
    padding-left: 25px;
    position: relative;
}

.category-group ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #ffb74d;
    font-weight: bold;
}

.note {
    font-size: 0.98em;
    color: rgba(232, 234, 237, 0.8);
    background: rgba(255, 183, 77, 0.08);
    border: 1px solid rgba(255, 183, 77, 0.2);
    border-left: 6px solid #ffb74d;
    padding: 25px;
    margin: 30px 0;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transform: skewX(-1deg);
}

.break-line {
    display: block;
    margin-top: 2em;
}

.section-separator {
    margin: 80px auto;
    border: 0;
    height: 2px;
    width: 60%;
    background: linear-gradient(90deg, transparent, rgba(255, 183, 77, 0.4), transparent);
    box-shadow: 0 0 30px rgba(255, 183, 77, 0.3);
}

#paymentButton, #formLinkButton {
    background: linear-gradient(135deg, #ffb74d, #ffa726);
    color: #1a1a2e;
    padding: 25px 60px;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: none;
    box-shadow: 0 15px 40px rgba(255, 183, 77, 0.3);
    display: block;
    margin: 60px auto;
    max-width: 450px;
    width: 100%;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform: skewX(-5deg);
}

#paymentButton span, #formLinkButton span {
    transform: skewX(5deg);
    display: block;
}

#paymentButton::before, #formLinkButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

#paymentButton:hover::before, #formLinkButton:hover::before {
    left: 100%;
}

#paymentButton:hover, #formLinkButton:hover {
    transform: translateY(-5px) skewX(-2deg);
    box-shadow: 0 25px 50px rgba(255, 183, 77, 0.4);
}

#results-announcement-pending {
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border-radius: 100px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 183, 77, 0.15);
    transform: rotate(-1deg);
}

#results-announcement-pending h3 {
    font-size: 2.2rem;
    color: #ffb74d;
    margin-bottom: 25px;
}

#announced-winners-content {
    padding-top: 40px;
}

#announced-winners-content h3 {
    text-align: center;
    margin: 60px 0 40px;
    color: #ffb74d;
    font-size: 2.8rem;
    font-family: 'Crimson Text', serif;
    position: relative;
    transform: skewX(-3deg);
}

#announced-winners-content h3::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) skewX(3deg);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffb74d, transparent);
}

.section-description {
    text-align: center;
    font-size: 1.2em;
    color: rgba(232, 234, 237, 0.8);
    margin: 0 auto 60px;
    max-width: 900px;
    line-height: 1.7;
    transform: skewX(1deg);
    padding: 30px;
    background: rgba(255, 183, 77, 0.03);
    border-radius: 40px;
}

.professional-winners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 100px 0;
}

.winner-card-highlight {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 183, 77, 0.2);
    padding: 40px;
    text-align: center;
    transition: all 0.6s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
}

.winner-card-highlight:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(255, 183, 77, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.winner-card-highlight h4 {
    font-size: 1.4rem;
    color: #ffb74d;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Crimson Text', serif;
}

.winner-photo-lg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 2px solid rgba(255, 183, 77, 0.3);
    box-shadow: 0 0 25px rgba(255, 183, 77, 0.2);
}

.winner-name-lg {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffb74d;
    margin-bottom: 10px;
}

.winner-quote {
    font-style: italic;
    color: rgba(232, 234, 237, 0.8);
    font-size: 0.9em;
    line-height: 1.4;
    margin-top: 10px;
    padding: 0 5px;
}

.winner-card-highlight .winner-rank-list {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0;
    width: 100%;
    text-align: left;
    font-size: 1em;
}

.winner-card-highlight .winner-rank-list li {
    color: rgba(232, 234, 237, 0.9);
    margin-bottom: 4px;
    line-height: 1.3;
    padding: 4px 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid rgba(255, 183, 77, 0.3);
}

.winner-card-highlight .winner-rank-list li strong {
    color: #ffb74d;
}

.other-categories-winners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
    margin-bottom: 80px;
}

.winner-group-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 183, 77, 0.15);
    padding: 35px;
    text-align: left;
    transform: skewY(1deg);
}

.winner-group-card:nth-child(even) {
    transform: skewY(-1deg);
}

.winner-group-card h4 {
    font-size: 1.5rem;
    color: #ffb74d;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 183, 77, 0.2);
    font-family: 'Crimson Text', serif;
    text-align: center;
}

.winner-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.winner-list-simple li {
    font-size: 1.05em;
    color: rgba(232, 234, 237, 0.9);
    padding: 10px 0;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 183, 77, 0.1);
}

.winner-list-simple li:last-child {
    border-bottom: none;
}

.winner-list-simple li strong {
    color: #ffb74d;
}

.detailed-results-notice {
    text-align: center;
    font-size: 1.2em;
    color: rgba(232, 234, 237, 0.9);
    background: rgba(255, 183, 77, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 25px;
    margin-top: 80px;
    border: 1px solid rgba(255, 183, 77, 0.2);
    transform: skewX(-1deg);
}

.application-section h2 + p {
    text-align: center;
    padding: 0;
}

.contact-section {
    position: relative;
}

.contact-note {
    background: rgba(255, 183, 77, 0.08);
    border: 1px solid rgba(255, 183, 77, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 40px;
    color: rgba(232, 234, 237, 0.8);
    transform: skewX(1deg);
}

@media (max-width: 1024px) and (min-width: 891px) {
}

@media (max-width: 1024px) {
    header {
        width: 250px;
    }
    
    main {
        margin-left: 250px;
        width: calc(100% - 250px);
        padding: 40px 50px 40px 40px;
    }
    
    footer {
        margin-left: 250px;
        width: calc(100% - 250px);
        padding: 30px 50px 30px 40px;
    }
    
    section:nth-child(even) {
        padding-left: 100px;
    }
    
    .detail-grid {
        gap: 40px;
    }
    
    .grid-item:nth-child(1) {
        transform: translateX(-50px) rotate(-2deg);
    }
    
    .grid-item:nth-child(2) {
        transform: translateX(50px) rotate(2deg);
    }
    
    .grid-item:nth-child(3) {
        transform: translateX(-25px) rotate(-1deg);
    }
    
    .cta-container {
        height: auto;
        min-height: 400px;
    }
}

@media (min-width: 891px) {
    .menu-toggle {
        display: none;
    }

    #main-nav-wrapper {
        display: flex;
        position: static;
        height: auto;
        width: auto;
        box-shadow: none;
        transform: none;
    }

    #mobile-nav-menu {
        display: none;
    }
}

.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: #ffb74d;
    letter-spacing: 1px;
    text-decoration: none;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 183, 77, 0.5);
}

.waao-logo-link.text-logo span {
    color: #FFF8E1;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

@media (max-width: 890px) {
    .header-branding {
        flex-direction: row;
        gap: 15px;
    }
    .waao-logo-link.text-logo {
        font-size: 1.4rem;
        padding-left: 15px;
        padding-top: 0;
        border-top: none;
        border-left: 2px solid rgba(255, 183, 77, 0.5);
    }
}

@media (max-width: 890px) {
    header {
        position: sticky;
        top: 0;
        width: 100%;
        height: auto;
        padding: 15px 20px;
        display: flex;
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid rgba(255, 183, 77, 0.2);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    .header-inner {
        flex-direction: row;
        height: auto;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    
    .header-branding {
        margin-bottom: 0;
    }
    
    header img {
        height: 60px;
        margin-bottom: 0;
    }
    
    .menu-toggle {
        display: flex;
    }

    #main-nav-wrapper {
        display: none;
    }

    #mobile-nav-menu {
        position: fixed;
        top: 92px;
        left: 0;
        width: 100%;
        max-height: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.4s ease-out, max-height 0.4s ease-out;
        overflow: hidden;
        display: flex;
        border-bottom: 1px solid rgba(255, 183, 77, 0.1);
    }

    #mobile-nav-menu.menu-open {
        transform: translateY(0);
        max-height: 500px;
        overflow-y: auto;
    }

    #mobile-nav-menu .main-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin: 0;
    }

    #mobile-nav-menu .nav-link {
        padding: 18px 25px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 183, 77, 0.1);
        border-radius: 0;
        transform: none;
    }

    #mobile-nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    #mobile-nav-menu .nav-link:hover {
        transform: none;
    }
    
    #mobile-nav-menu .nav-link.active {
        transform: none;
    }
    
    main {
        margin-left: 0;
        width: 100%;
        padding: 25px 20px;
        min-height: auto;
    }
    
    footer {
        margin-left: 0;
        width: 100%;
        padding: 25px 20px;
    }
    
    section {
        margin: 40px 0;
    }
    
    section:nth-child(odd),
    section:nth-child(even) {
        padding-left: 0;
        padding-right: 0;
    }
    
    section:nth-child(odd) .section-content,
    section:nth-child(even) .section-content {
        border-radius: 20px;
        padding: 30px;
        transform: none;
    }
    
    section:nth-child(odd) .section-content > *,
    section:nth-child(even) .section-content > * {
        transform: none;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .detail-grid {
        gap: 30px;
    }
    
    .grid-item {
        max-width: none;
        width: 100%;
        border-radius: 20px;
        transform: none !important;
        align-self: stretch;
    }
    
    .grid-item:hover {
        transform: scale(1.02) !important;
    }
    
    .grid-item h3 {
        font-size: 1.8rem;
    }
    
    .cta-section {
        margin: 60px 0;
    }
    
    .cta-container {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 20px;
    }
    
    .cta-box {
        transform: none;
        border-radius: 20px;
        padding: 30px;
    }

    .cta-box > * {
        transform: none;
    }
    
    .cta-box:hover {
        transform: scale(1.02);
    }
    
    .regulation-section h3 {
        font-size: 1.6rem;
    }
    
    .category-group {
        padding: 25px;
        transform: none;
        border-radius: 20px;
    }
    
    #paymentButton, #formLinkButton {
        font-size: 1.1rem;
        padding: 18px 40px;
        margin: 40px auto;
        border-radius: 30px;
        transform: none;
    }
    
    #paymentButton:hover, #formLinkButton:hover {
        transform: translateY(-3px);
    }
    
    .professional-winners-grid {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
        margin: 60px 0;
    }
    
    .winner-card-highlight {
        position: static;
        transform: none !important;
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: 200px;
        border-radius: 20px;
        margin: 0 auto;
    }
    
    .winner-card-highlight:hover {
        transform: scale(1.02) !important;
    }
    
    .winner-photo-lg {
        width: 100px;
        height: 100px;
    }
    
    .winner-name-lg {
        font-size: 1.1rem;
    }
    
    .winner-card-highlight h4 {
        font-size: 1.3rem;
    }
    
    .winner-quote {
        font-size: 0.85em;
    }
    
    .winner-group-card {
        transform: none;
        border-radius: 20px;
        padding: 25px;
    }
    
    #announced-winners-content h3 {
        font-size: 2.2rem;
        transform: none;
    }
    
    #announced-winners-content h3::before {
        transform: translateX(-50%);
    }
    
    .section-description {
        transform: none;
        background: none;
        padding: 15px;
        border-radius: 15px;
    }
    
    #results-announcement-pending {
        border-radius: 20px;
        transform: none;
        padding: 40px 20px;
    }
    
    .detailed-results-notice {
        transform: none;
        border-radius: 15px;
        padding: 25px;
        font-size: 1.05em;
    }
    
    .note {
        transform: none;
        border-radius: 10px;
        padding: 20px;
    }
    
    .contact-note {
        transform: none;
        padding: 20px;
    }
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.payment-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 183, 77, 0.15);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 183, 77, 0.3);
}

.payment-card h3 {
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    color: #ffb74d;
    margin: 0 0 15px;
}

.payment-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e8eaed;
    margin: 0 0 20px;
    font-family: 'Inter', sans-serif;
}

.payment-card .description {
    color: rgba(232, 234, 237, 0.8);
    font-size: 1em;
    line-height: 1.6;
    margin: 0 0 30px;
    flex-grow: 1;
}

.payment-card .btn-pay {
    display: inline-block;
    background: linear-gradient(135deg, #ffb74d, #ffa726);
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    padding: 15px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 183, 77, 0.3);
}

.payment-card .btn-pay:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 183, 77, 0.4);
}

@media (max-width: 480px) {
    header img {
        height: 50px;
    }
    
    main {
        padding: 20px 15px;
    }
    
    footer {
        padding: 20px 15px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section:nth-child(odd) .section-content,
    section:nth-child(even) .section-content {
        padding: 20px;
    }
    
    .grid-item {
        padding: 25px;
    }
    
    .grid-item h3 {
        font-size: 1.5rem;
    }
    
    .cta-box {
        padding: 25px;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    .btn-secondary {
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    #paymentButton, #formLinkButton {
        font-size: 1rem;
        padding: 15px 30px;
        margin: 30px auto;
    }
    
    .regulation-section h3 {
        font-size: 1.4rem;
    }
    
    .category-group {
        padding: 20px;
    }
    
    .category-group h4 {
        font-size: 1.3rem;
    }
    
    .winner-card-highlight {
        max-width: 300px;
        padding: 20px;
    }
    
    .winner-photo-lg {
        width: 80px;
        height: 80px;
    }
    
    .winner-name-lg {
        font-size: 1rem;
    }
    
    .winner-card-highlight h4 {
        font-size: 1.2rem;
    }
    
    .winner-group-card {
        padding: 20px;
    }
    
    .winner-group-card h4 {
        font-size: 1.3rem;
    }
    
    #announced-winners-content h3 {
        font-size: 2rem;
    }
    
    .detailed-results-notice {
        padding: 20px;
        font-size: 1rem;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .payment-card {
        padding: 30px;
    }
}