* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: #f5f5f0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
    background-size: 20px 20px;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0px);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle:focus {
    outline: 2px solid #99e17a;
    outline-offset: 2px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Nav links will be handled in the main mobile media query */

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.nav-link:hover {
    color: #7fff00;
}

.nav-link:nth-child(2) {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.central-figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    position: relative;
    z-index: 2;
}

/* Show desktop image by default, hide mobile */
.mobile-hero {
    display: none;
}

.desktop-hero {
    display: block;
}

/* Show mobile image on mobile devices */
@media (max-width: 768px) {
    .desktop-hero {
        display: none;
    }
    
    .mobile-hero {
        display: block;
    }
}

.left-content {
    position: absolute;
    left: 50px;
    bottom: 80px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-link {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: #7fff00;
    border: 3px solid #000;
    border-radius: 8px;
    padding: 15px 30px;
    text-align: center;
    cursor: pointer;
    font-family: 'Anton', sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-link:first-child {
    font-size: 20px;
}

.cta-link:hover {
    background: #5fdf00;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(127, 255, 0, 0.4);
}

.cta-link::before {
    display: none;
}

.slogan {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 10px;
    text-transform: uppercase;
}

.floating-promo {
    position: fixed;
    bottom: 30px;
    width: 280px;
    background: #fff;
    border: 3px solid #7fff00;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(127, 255, 0, 0.4);
    z-index: 9999;
    overflow: hidden;
    cursor: pointer;
    animation: slideInBounce 0.8s ease-out, float 3s ease-in-out infinite;
    transform-origin: center;
    transition: all 0.3s ease;
    display: none;
}

.floating-promo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(127, 255, 0, 0.6);
}

@keyframes slideInBounce {
    0% {
        transform: translateY(100px) scale(0.8);
        opacity: 0;
    }
    60% {
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.promo-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: #7fff00;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    line-height: 1;
}

.promo-close:hover {
    background: #5fdf00;
    transform: rotate(90deg) scale(1.1);
}

.promo-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.floating-promo:hover .promo-image {
    transform: scale(1.1);
}

.promo-content {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #f5f5f0 100%);
}

.promo-title {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: #000;
    margin: 0 0 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.promo-text {
    font-size: 18px;
    font-weight: 900;
    color: #7fff00;
    margin: 0 0 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-btn {
    width: 100%;
    padding: 12px;
    background: #7fff00;
    color: #000;
    border: 2px solid #000;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Anton', sans-serif;
}

.promo-btn:hover {
    background: #5fdf00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(127, 255, 0, 0.4);
}

.promo-pulse {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid #7fff00;
    border-radius: 15px;
    animation: pulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.floating-promo.left {
    left: 30px;
}

.floating-promo.right {
    right: 30px;
}

@media (max-width: 768px) {
    .floating-promo {
        width: 240px;
        bottom: 20px;
    }
    
    .floating-promo.left {
        left: 15px;
    }
    
    .floating-promo.right {
        right: 15px;
    }
    
    .promo-image-container {
        height: 160px;
    }
    
    .promo-title {
        font-size: 20px;
    }
    
    .promo-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .floating-promo {
        width: 200px;
        bottom: 15px;
    }
    
    .promo-image-container {
        height: 140px;
    }
    
    .promo-content {
        padding: 15px;
    }
    
    .promo-title {
        font-size: 18px;
    }
    
    .promo-text {
        font-size: 14px;
    }
    
    .promo-btn {
        padding: 10px;
        font-size: 14px;
    }
}

.image-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('image/2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: visible;
}

.image-section-content {
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
}

.bio-heading {
    position: absolute;
    top: 100px;
    left: 50px;
    font-family: 'Anton', sans-serif;
    font-size: 120px;
    font-weight: 400;
    color: #99e17a;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 0;
    text-shadow: 
        3px 3px 0px rgba(0, 0, 0, 0.1),
        6px 6px 0px rgba(0, 0, 0, 0.05);
    line-height: 1;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.bio-heading.animate {
    opacity: 1;
    transform: translateY(0);
}

.bio-text {
    position: absolute;
    top: 280px;
    left: 50px;
    font-size: 20px;
    line-height: 1.8;
    color: #000;
    max-width: 650px;
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.5px;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.bio-text.animate {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .left-content {
        left: 30px;
        bottom: 50px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-container {
        justify-content: flex-end;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 2;
        position: relative;
        z-index: 1002;
        pointer-events: auto;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #f5f5f0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease, display 0.3s ease;
        z-index: 1001;
    }
    
    .nav-links.active {
        display: flex !important;
        right: 0 !important;
    }
    
    .nav-link {
        font-size: 18px;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #ddd;
        text-align: left;
    }
    
    .nav-link:nth-child(2) {
        position: static;
        transform: none;
        width: 100%;
        text-align: left;
        margin: 0;
    }
    
    .nav-link:hover {
        color: #99e17a;
        padding-left: 10px;
    }
    
    /* Overlay when menu is open */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    .hero-section {
        padding: 0;
        flex-direction: column;
    }
    
    .left-content {
        position: absolute;
        left: 20px;
        bottom: 30px;
        margin-top: 0;
        align-items: flex-start;
        text-align: left;
        z-index: 100;
    }
    
    .cta-buttons {
        align-items: flex-start;
    }
    
    .cta-link {
        font-size: 14px;
        padding: 12px 20px;
    }

    .cta-link:first-child {
        font-size: 16px;
    }
    
    .slogan {
        font-size: 12px;
        text-align: left;
        margin-top: 10px;
        color: #99e17a;
    }
    
    .image-section {
        background-attachment: scroll;
        background-image: url('image/6.png');
    }
    
    .bio-heading {
        top: 80px;
        left: 30px;
        font-size: 80px;
    }
    
    .bio-text {
        top: 220px;
        left: 30px;
        font-size: 18px;
        max-width: calc(100% - 60px);
    }
}

@media (max-width: 480px) {
    .left-content {
        left: 15px;
        bottom: 20px;
    }
    
    .cta-link {
        font-size: 14px;
        padding: 12px 18px;
    }
    
    .slogan {
        color: #99e17a;
    }
    
    .bio-heading {
        top: 60px;
        left: 20px;
        font-size: 60px;
    }
    
    .bio-text {
        top: 160px;
        left: 20px;
        font-size: 16px;
        line-height: 1.6;
        max-width: calc(100% - 40px);
    }
}

.footer {
    position: relative;
    background: #f5f5f0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
    background-size: 20px 20px;
    padding: 60px 50px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    text-align: center;
    width: 100%;
}

.footer-heading {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer-heading.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-item {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-item:nth-child(1) {
    transition-delay: 0.1s;
}

.contact-item:nth-child(2) {
    transition-delay: 0.2s;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.social-links.animate {
    opacity: 1;
    transform: translateY(0);
}

.social-link {
    color: #7fff00;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
}

.social-links.animate .social-link {
    opacity: 1;
    transform: scale(1);
}

.social-links.animate .social-link:nth-child(1) {
    transition-delay: 0.4s;
}

.social-links.animate .social-link:nth-child(2) {
    transition-delay: 0.5s;
}

.social-links.animate .social-link:nth-child(3) {
    transition-delay: 0.6s;
}

.social-links.animate .social-link:nth-child(4) {
    transition-delay: 0.7s;
}

.social-links.animate .social-link:nth-child(5) {
    transition-delay: 0.8s;
}

.social-link svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    color: #5fdf00;
    transform: translateY(-5px);
}

.social-link:hover svg {
    transform: scale(1.2);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 40px auto 30px;
    max-width: 1200px;
}

.copyright {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
}

.copyright p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-tagline {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 30px 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-divider {
        margin: 30px auto 20px;
    }
    
    .copyright {
        text-align: center;
    }
    
    .footer-heading {
        font-size: 20px;
    }
    
    .contact-item {
        font-size: 14px;
    }
    
    .social-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 20px 20px;
    }
    
    .footer-heading {
        font-size: 18px;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .copyright p {
        font-size: 12px;
    }
    
    .footer-tagline {
        font-size: 14px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #f5f5f0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
    background-size: 20px 20px;
    margin: 2% auto;
    padding: 0;
    border: 3px solid #7fff00;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.4s ease;
    position: relative;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #000;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7fff00;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    background: #5fdf00;
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, #7fff00 0%, #5fdf00 100%);
    padding: 40px;
    text-align: center;
    border-bottom: 3px solid #000;
}

.modal-title {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: #000;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 3px 3px 0px rgba(255, 255, 255, 0.8);
}

.modal-subtitle {
    font-size: 20px;
    color: #000;
    margin: 10px 0 0;
    font-weight: 600;
    letter-spacing: 2px;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.merch-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-main {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border: 3px solid #000;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border: 2px solid #000;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.thumbnail:hover {
    border-color: #7fff00;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: #7fff00;
    border-width: 3px;
    box-shadow: 0 0 10px rgba(127, 255, 0, 0.5);
}

.preorder-form {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #000;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #000;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7fff00;
    box-shadow: 0 0 10px rgba(127, 255, 0, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #7fff00;
    color: #000;
    border: 3px solid #000;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Anton', sans-serif;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #5fdf00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(127, 255, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 968px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-main {
        height: 400px;
    }
    
    .modal-title {
        font-size: 36px;
    }
    
    .modal-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header {
        padding: 30px 20px;
    }
    
    .modal-title {
        font-size: 28px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .gallery-main {
        height: 300px;
    }
    
    .thumbnail {
        height: 80px;
    }
    
    .preorder-form {
        padding: 20px;
    }
}

.custom-popup {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.custom-popup.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-popup-content {
    background: #f5f5f0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
    background-size: 20px 20px;
    margin: auto;
    padding: 0;
    border: 3px solid #7fff00;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.4s ease;
    position: relative;
    text-align: center;
}

.custom-popup-close {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #000;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 20001;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7fff00;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.custom-popup-close:hover {
    background: #5fdf00;
    transform: rotate(90deg);
}

.custom-popup-icon {
    width: 80px;
    height: 80px;
    margin: 30px auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
}

.custom-popup-icon.success {
    background: #7fff00;
    color: #000;
}

.custom-popup-icon.success::before {
    content: "✓";
}

.custom-popup-icon.error {
    background: #ff4444;
    color: #fff;
}

.custom-popup-icon.error::before {
    content: "✗";
}

.custom-popup-title {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: #000;
    margin: 0 30px 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.custom-popup-message {
    font-size: 18px;
    color: #333;
    margin: 0 30px 30px;
    line-height: 1.6;
}

.custom-popup-btn {
    background: #7fff00;
    color: #000;
    border: 2px solid #000;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin: 0 30px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Anton', sans-serif;
}

.custom-popup-btn:hover {
    background: #5fdf00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .custom-popup-content {
        width: 95%;
        max-width: 400px;
    }
    
    .custom-popup-title {
        font-size: 24px;
        margin: 0 20px 15px;
    }
    
    .custom-popup-message {
        font-size: 16px;
        margin: 0 20px 25px;
    }
    
    .custom-popup-btn {
        padding: 12px 30px;
        font-size: 16px;
        margin: 0 20px 25px;
    }
    
    .custom-popup-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin: 25px auto 15px;
    }
}

