/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #1f1f1f;
    --bg-secondary: #2a2a2a;
    --bg-tertiary: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --accent-green: #00ff88;
    --accent-green-dark: #00cc6a;
    --accent-green-light: #33ffaa;
    --gradient-start: #00ff88;
    --gradient-end: #00cc6a;
    --border-color: rgba(0, 255, 136, 0.2);
    --shadow-green: rgba(0, 255, 136, 0.3);
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(31, 31, 31, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 32px;
    position: absolute;
    right: 20px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-link:hover {
    color: var(--accent-green);
}

.login-btn {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--bg-primary);
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-green);
    color: var(--bg-primary);
}

/* Advertise Hero Section */
.advertise-hero {
    padding: 140px 20px 80px;
    padding-top: max(140px, calc(100px + env(safe-area-inset-top)));
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.advertise-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.advertise-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advertise-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Advertise Content Section */
.advertise-content {
    padding: 120px 20px;
    background: var(--bg-tertiary);
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.advertise-section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.advertise-section[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

.advertise-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    backdrop-filter: blur(20px);
}

.advertise-card.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.advertise-card.reverse > * {
    direction: ltr;
}

.advertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.advertise-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.advertise-card:hover::before {
    transform: scaleX(1);
}

.advertise-card:hover::after {
    opacity: 1;
}

.advertise-card:hover {
    transform: translateY(-12px) scale(1.01);
    border-color: var(--accent-green);
    box-shadow: 0 30px 80px rgba(0, 255, 136, 0.25),
                0 0 0 1px rgba(0, 255, 136, 0.15);
}

.advertise-visual {
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, transparent 100%);
}

/* People Image */
.people-image-container {
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.people-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.advertise-card:hover .people-image {
    transform: scale(1.1);
}

/* Game Image */
.game-image-container {
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.game-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.pacman-icon {
    font-size: 80px;
    animation: pacmanMove 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
}

@keyframes pacmanMove {
    0%, 100% {
        transform: translateX(0) scale(1);
    }
    50% {
        transform: translateX(10px) scale(1.1);
    }
}

.advertise-card:hover .game-image {
    transform: scale(1.1);
}

.advertise-icon {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 204, 106, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.advertise-card:hover .advertise-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.25), rgba(0, 204, 106, 0.25));
}

.advertise-card:hover .icon-glow {
    opacity: 0.8;
}

/* Spider Web Animation */
.web-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-icon svg {
    width: 140px;
    height: 140px;
    color: var(--accent-green);
}

.web-circle {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCircle 2s ease-in-out infinite;
}

.web-circle-1 {
    animation-delay: 0s;
}

.web-circle-2 {
    animation-delay: 0.3s;
}

.web-circle-3 {
    animation-delay: 0.6s;
}

.web-line {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: drawLine 1.5s ease-in-out infinite;
}

.web-line line {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: drawLine 1.5s ease-in-out infinite;
}

.web-line-1 {
    animation-delay: 0.9s;
}

.web-line-1 line {
    animation-delay: 0.9s;
}

.web-line-2 {
    animation-delay: 1s;
}

.web-line-2 line {
    animation-delay: 1s;
}

.web-line-3 {
    animation-delay: 1.1s;
}

.web-line-3 line {
    animation-delay: 1.1s;
}

.web-line-4 {
    animation-delay: 1.2s;
}

.web-line-4 line {
    animation-delay: 1.2s;
}

.web-center {
    fill: var(--accent-green);
    animation: pulseCenter 2s ease-in-out infinite;
}

@keyframes drawCircle {
    0% {
        stroke-dashoffset: 100;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 120;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes pulseCenter {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Avatar Scrolling Animation */
.avatar-scroll-icon {
    overflow: hidden;
    position: relative;
    height: 140px;
}

.avatar-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: scrollAvatars 4s linear infinite;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 204, 106, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 2px solid var(--accent-green);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

@keyframes scrollAvatars {
    0% {
        transform: translateX(-50%) translateY(140px);
    }
    100% {
        transform: translateX(-50%) translateY(-200px);
    }
}

/* Survey Icon Animation */
.survey-icon {
    position: relative;
}

.survey-icon svg {
    position: relative;
    z-index: 1;
}

.survey-line {
    position: absolute;
    height: 2px;
    background: var(--accent-green);
    border-radius: 1px;
    left: 25%;
    width: 0;
    opacity: 0;
    z-index: 2;
}

.survey-line.line-1 {
    top: 55%;
    animation: drawSurveyLine 2.5s ease-in-out infinite;
}

.survey-line.line-2 {
    top: 65%;
    animation: drawSurveyLine 2.5s ease-in-out infinite 0.6s;
}

.survey-line.line-3 {
    top: 75%;
    animation: drawSurveyLine 2.5s ease-in-out infinite 1.2s;
}

.survey-check {
    position: absolute;
    width: 10px;
    height: 6px;
    border: 2px solid var(--accent-green);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    opacity: 0;
    z-index: 3;
}

.survey-check.check-1 {
    top: 53%;
    left: 20%;
    animation: showCheck 2.5s ease-in-out infinite 1.8s;
}

.survey-check.check-2 {
    top: 63%;
    left: 20%;
    animation: showCheck 2.5s ease-in-out infinite 2.4s;
}

@keyframes drawSurveyLine {
    0% {
        width: 0;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        width: 60%;
        opacity: 1;
    }
    100% {
        width: 60%;
        opacity: 0;
    }
}

@keyframes showCheck {
    0%, 40% {
        opacity: 0;
        transform: rotate(45deg) scale(0);
    }
    50%, 90% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) scale(0);
    }
}

/* Challenge Icon Animation */
.challenge-icon {
    position: relative;
}

.lightning-svg {
    position: relative;
    z-index: 2;
    animation: lightningFlash 1.5s ease-in-out infinite;
}

.lightning-bolt {
    position: absolute;
    width: 4px;
    height: 30px;
    background: var(--accent-green);
    border-radius: 2px;
    opacity: 0;
    filter: blur(2px);
}

.lightning-bolt.bolt-1 {
    top: 20%;
    left: 45%;
    transform: rotate(25deg);
    animation: lightningStrike 1.5s ease-in-out infinite;
}

.lightning-bolt.bolt-2 {
    top: 30%;
    left: 55%;
    transform: rotate(-15deg);
    animation: lightningStrike 1.5s ease-in-out infinite 0.3s;
}

@keyframes lightningFlash {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 5px var(--accent-green));
    }
    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 15px var(--accent-green));
    }
}

@keyframes lightningStrike {
    0%, 100% {
        opacity: 0;
        transform: scaleY(0) rotate(25deg);
    }
    10% {
        opacity: 1;
        transform: scaleY(1) rotate(25deg);
    }
    20% {
        opacity: 0;
        transform: scaleY(0.5) rotate(25deg);
    }
}

.advertise-text {
    padding: 60px;
}

.advertise-card-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    transition: color 0.4s ease;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.advertise-card:hover .advertise-card-title {
    color: var(--accent-green);
}

.advertise-card-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 18px;
    transition: color 0.4s ease;
}

.advertise-card:hover .advertise-card-description {
    color: var(--text-primary);
}

/* Application Section */
.application-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.application-wrapper {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.application-wrapper[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

.application-header {
    text-align: center;
    margin-bottom: 60px;
}

.application-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.application-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.application-form {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.application-form:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 30px 80px rgba(0, 255, 136, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.1);
    background: var(--bg-secondary);
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

.form-input option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.checkbox-group {
    margin-bottom: 32px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-green);
    flex-shrink: 0;
}

.link {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.link:hover {
    color: var(--accent-green-light);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--bg-primary);
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-green-light), var(--accent-green));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn span,
.submit-btn svg {
    position: relative;
    z-index: 1;
}

.submit-btn svg {
    transition: transform 0.4s ease;
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

/* Footer */
.footer {
    background: var(--bg-tertiary);
    padding: 60px 20px 40px;
    border-top: 1px solid var(--border-color);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.footer-logo {
    height: 28px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-green);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-tertiary);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nav-container {
        flex-direction: column;
        gap: 12px;
        padding: 0 16px;
    }
    
    .logo {
        height: 40px;
    }

    .nav-links {
        position: static;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 14px;
    }

    .login-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .advertise-hero {
        padding: 140px 16px 60px;
        padding-top: max(140px, calc(110px + env(safe-area-inset-top)));
    }

    .advertise-title {
        font-size: 42px;
    }

    .advertise-subtitle {
        font-size: 18px;
    }

    .advertise-content {
        padding: 80px 16px;
    }

    .advertise-section {
        margin-bottom: 60px;
    }

    .advertise-card {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .advertise-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .advertise-visual {
        padding: 50px 30px;
    }

    .advertise-text {
        padding: 0 30px 50px;
    }

    .advertise-icon {
        width: 120px;
        height: 120px;
    }

    .web-icon svg {
        width: 120px;
        height: 120px;
    }

    .people-image-container,
    .game-image-container {
        max-width: 350px;
        height: 350px;
    }

    .avatar {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .avatar-scroll-icon {
        height: 120px;
    }

    .pacman-icon {
        font-size: 70px;
    }

    .advertise-card-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .advertise-card-description {
        font-size: 17px;
    }

    .application-section {
        padding: 100px 16px;
    }

    .application-title {
        font-size: 40px;
    }

    .application-subtitle {
        font-size: 18px;
    }

    .application-form {
        padding: 50px 40px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 12px;
        gap: 10px;
    }
    
    .logo {
        height: 32px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-link {
        font-size: 13px;
    }

    .login-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .advertise-hero {
        padding: 130px 12px 50px;
        padding-top: max(130px, calc(100px + env(safe-area-inset-top)));
    }
    
    .advertise-title {
        font-size: 32px;
    }

    .advertise-subtitle {
        font-size: 16px;
    }

    .advertise-content {
        padding: 50px 12px;
    }

    .advertise-card {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

@media (max-width: 360px) {
    .nav-links {
        gap: 10px;
    }

    .nav-link {
        font-size: 12px;
    }

    .login-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
}

