/**
 * WPCrypto ICO Module Styles
*/
/*--------------------------------------------------------------
# Table of Contents
--------------------------------------------------------------*/
/* 
1. General Styles
2. Hero Section
3. Info Boxes
4. Banner Components
   4.1 VIP Banner
   4.2 Neon Banner 
   4.3 Hologram Banner
   4.4 Wave Banner
   4.5 Glass Banner
5. Token Details
6. Token Calculator Section
7. Benefits Section
8. Roadmap Section
9. Team Section
10. Tokenomics Section
11. Admin Styles
12. Responsive Styles
*/

/*--------------------------------------------------------------
# 1. General Styles
--------------------------------------------------------------*/
.wpcrypto-ico-container {
    width: calc(100% - 4px);
    margin: 0 auto;
    padding: 0 2px;
    box-sizing: border-box;
}

.wpcrypto-ico-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.wpcrypto-ico-section-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    color: #6b7280;
}

/*--------------------------------------------------------------
# 2. Hero Section
--------------------------------------------------------------*/
.wpcrypto-ico-hero {
    position: relative;
    min-height: 66vh;
    background: linear-gradient(135deg, #0a2463 0%, #3e92cc 100%);
    overflow: hidden;
    padding: 2rem 0;
    width: 100%;
}

.wpcrypto-ico-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.wpcrypto-ico-hero-content {
    position: relative;
    width: calc(100% - 4px);
    margin: 0 auto;
    padding: 0 2px;
    color: white;
    text-align: center;
    z-index: 2;
}

.wpcrypto-ico-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.wpcrypto-ico-hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.wpcrypto-ico-hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.wpcrypto-ico-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.wpcrypto-ico-wave-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/*--------------------------------------------------------------
# 3. Info Boxes
--------------------------------------------------------------*/
.wpcrypto-ico-info-boxes {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: calc(100% - 4px);
    margin: 4rem auto 0;
    padding: 0 2px;
    position: relative;
    z-index: 3;
    box-sizing: border-box;
}

.wpcrypto-ico-info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    flex: 1;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.wpcrypto-ico-info-box:hover {
    transform: translateY(-5px);
}

.wpcrypto-ico-info-box i {
    font-size: 2.5rem;
    color: #60A5FA;
    margin-bottom: 1rem;
}

.wpcrypto-ico-info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.wpcrypto-ico-info-box p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

/*--------------------------------------------------------------
# 4. Banner Components
--------------------------------------------------------------*/

/* 4.1 VIP Banner */
.wpcrypto-ico-vip-banner {
    width: 100%;
    margin: 2rem 0;
    height: 80px;
    background: linear-gradient(135deg, #9333EA 0%, #EF4444 50%, #3B82F6 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.wpcrypto-ico-flash-line {
    position: absolute;
    width: 50px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    animation: flash 3s infinite;
    filter: blur(5px);
}

.wpcrypto-ico-shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
    );
    animation: shine 4s infinite;
}

.wpcrypto-ico-vip-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    width: calc(100% - 4px);
    margin: 0 auto;
}

.wpcrypto-ico-vip-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wpcrypto-ico-crown-icon {
    color: #FFD700;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    animation: glow 2s ease-in-out infinite;
}

.wpcrypto-ico-vip-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.wpcrypto-ico-vip-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.wpcrypto-ico-vip-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.wpcrypto-ico-vip-button i {
    transition: transform 0.3s ease;
}

.wpcrypto-ico-vip-button:hover i {
    transform: translateX(4px);
}

@keyframes flash {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
}

/* 4.2 Neon Banner */
.wpcrypto-ico-neon-banner {
    width: 100%;
    margin: 2rem 0;
    height: 90px;
    background: #0f0f1e;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.3);
}

.wpcrypto-ico-neon-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(52, 211, 153, 0.2) 0%, transparent 70%);
    animation: neonPulse 3s ease-in-out infinite;
}

.wpcrypto-ico-neon-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    width: calc(100% - 4px);
    margin: 0 auto;
}

.wpcrypto-ico-neon-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wpcrypto-ico-neon-icon {
    color: #34d399;
    font-size: 2rem;
    text-shadow: 0 0 10px #34d399, 0 0 20px #34d399;
    animation: neonFlicker 2s infinite;
}

.wpcrypto-ico-neon-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 5px rgba(52, 211, 153, 0.7);
}

.wpcrypto-ico-neon-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(52, 211, 153, 0.2);
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid #34d399;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #34d399;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.5);
}

.wpcrypto-ico-neon-button:hover {
    background: rgba(52, 211, 153, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.8);
}

@keyframes neonPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 10px #34d399, 0 0 20px #34d399;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* 4.3 Hologram Banner */
.wpcrypto-ico-hologram-banner {
    width: 100%;
    margin: 2rem 0;
    height: 90px;
    background: rgba(17, 24, 39, 0.95);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.wpcrypto-ico-hologram-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(96, 165, 250, 0.6);
    z-index: 1;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.8);
    animation: scanline 3s linear infinite;
}

.wpcrypto-ico-hologram-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(96, 165, 250, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.wpcrypto-ico-hologram-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    width: calc(100% - 4px);
    margin: 0 auto;
}

.wpcrypto-ico-hologram-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wpcrypto-ico-hologram-badge {
    width: 40px;
    height: 40px;
    background: rgba(96, 165, 250, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.wpcrypto-ico-hologram-badge i {
    color: #60a5fa;
    font-size: 1.5rem;
    animation: hologramPulse 2s infinite;
}

.wpcrypto-ico-hologram-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 5px rgba(96, 165, 250, 0.8);
    letter-spacing: 1px;
}

.wpcrypto-ico-hologram-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(96, 165, 250, 0.15);
    color: white;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 4px;
    border: 1px solid rgba(96, 165, 250, 0.6);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.wpcrypto-ico-hologram-button:hover {
    background: rgba(96, 165, 250, 0.3);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.5);
}

.wpcrypto-ico-hologram-button i {
    transition: transform 0.3s ease;
}

.wpcrypto-ico-hologram-button:hover i {
    transform: translateX(4px);
}

@keyframes scanline {
    0% {
        top: -10%;
        opacity: 0.8;
    }
    100% {
        top: 110%;
        opacity: 0.2;
    }
}

@keyframes hologramPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

/* 4.4 Wave Banner */
.wpcrypto-ico-wave-banner {
    width: 100%;
    margin: 2rem 0;
    height: 90px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.wpcrypto-ico-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #7e22ce, #db2777);
    overflow: hidden;
}

.wpcrypto-ico-wave {
    position: absolute;
    width: 200%;
    height: 200%;
    opacity: 0.5;
}

.wave1 {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 40%;
    bottom: -100%;
    left: -50%;
    animation: wave 15s infinite linear;
}

.wave2 {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 43%;
    bottom: -100%;
    left: -60%;
    animation: wave 25s infinite linear;
}

.wave3 {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 45%;
    bottom: -100%;
    left: -70%;
    animation: wave 20s infinite linear;
}

.wpcrypto-ico-wave-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    width: calc(100% - 4px);
    margin: 0 auto;
}

.wpcrypto-ico-wave-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wpcrypto-ico-wave-icon {
    color: white;
    font-size: 1.8rem;
    animation: shimmer 3s infinite;
    opacity: 0.9;
}

.wpcrypto-ico-wave-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wpcrypto-ico-wave-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.wpcrypto-ico-wave-button:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.wpcrypto-ico-wave-button i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.wpcrypto-ico-wave-button:hover i {
    transform: translateX(4px);
}

@keyframes wave {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

/* 4.5 Glass Banner */
.wpcrypto-ico-glass-banner {
    width: 100%;
    margin: 2rem 0;
    height: 90px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.4) 0%, rgba(251, 113, 133, 0.4) 100%);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.wpcrypto-ico-glass-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    animation: float 8s ease-in-out infinite;
}

.b1 {
    width: 80px;
    height: 80px;
    top: -20px;
    left: 10%;
    animation-delay: -1s;
    opacity: 0.7;
}

.b2 {
    width: 60px;
    height: 60px;
    bottom: -15px;
    right: 20%;
    animation-delay: -5s;
    opacity: 0.5;
}

.b3 {
    width: 40px;
    height: 40px;
    bottom: 20px;
    left: 30%;
    animation-delay: -3s;
    opacity: 0.6;
}

.b4 {
    width: 50px;
    height: 50px;
    top: 10px;
    right: 5%;
    animation-delay: -7s;
    opacity: 0.4;
}

.wpcrypto-ico-glass-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    width: calc(100% - 4px);
    margin: 0 auto;
}

.wpcrypto-ico-glass-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wpcrypto-ico-glass-badge {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.wpcrypto-ico-glass-badge i {
    color: white;
    font-size: 1.2rem;
    animation: flicker 2s infinite alternate;
}

.wpcrypto-ico-glass-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.wpcrypto-ico-glass-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.wpcrypto-ico-glass-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.wpcrypto-ico-glass-button:hover .arrow-icon {
    transform: translateX(4px);
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        opacity: 1;
    }
    20%, 24%, 55% {
        opacity: 0.7;
    }
}

/*--------------------------------------------------------------
# 5. Token Details
--------------------------------------------------------------*/
.wpcrypto-ico-token-details {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.wpcrypto-ico-token-details::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1.5" fill="%23374151"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.wpcrypto-ico-token-details .wpcrypto-ico-section-title {
    color: #fff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wpcrypto-ico-token-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: calc(100% - 4px);
    margin: 0 auto;
    padding: 0 2px;
    box-sizing: border-box;
}

.wpcrypto-ico-token-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-out;
}

.wpcrypto-ico-token-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.wpcrypto-ico-token-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wpcrypto-ico-token-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.wpcrypto-ico-token-badge i {
    font-size: 1.5rem;
    color: #fff;
}

.wpcrypto-ico-token-header h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
}

.wpcrypto-ico-token-symbol {
    font-size: 0.9rem;
    color: #60A5FA;
    margin-top: 0.2rem;
}

.wpcrypto-ico-token-stats {
    margin-bottom: 1.5rem;
}

.wpcrypto-ico-stat-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wpcrypto-ico-stat-item:last-child {
    border-bottom: none;
}

.wpcrypto-ico-stat-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.wpcrypto-ico-stat-icon i {
    color: #60A5FA;
    font-size: 1rem;
}

.wpcrypto-ico-stat-label {
    flex: 1;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.wpcrypto-ico-stat-value {
    font-weight: 300;
    color: #fff;
    font-size: 0.9rem;
}

.wpcrypto-ico-contract-link {
    color: #60A5FA;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    gap: 5px;
    transition: all 0.3s ease;
}

.wpcrypto-ico-contract-link:hover {
    color: #93C5FD;
    text-decoration: underline;
}

.wpcrypto-ico-contract-link i {
    font-size: 0.8rem;
}

.wpcrypto-ico-token-documents {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.wpcrypto-ico-doc-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.wpcrypto-ico-doc-whitepaper {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.wpcrypto-ico-doc-audit {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.wpcrypto-ico-doc-roadmap {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.3);
}

.wpcrypto-ico-doc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.wpcrypto-ico-doc-whitepaper:hover {
    background: rgba(59, 130, 246, 0.3);
}

.wpcrypto-ico-doc-audit:hover {
    background: rgba(16, 185, 129, 0.3);
}

.wpcrypto-ico-doc-roadmap:hover {
    background: rgba(245, 158, 11, 0.3);
}

.wpcrypto-ico-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    text-align: center;
    justify-content: center;
}

.wpcrypto-ico-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.wpcrypto-ico-card-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.wpcrypto-ico-card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.wpcrypto-ico-progress-circle-container {
    margin: 0 auto 2rem;
    max-width: 200px;
}

.wpcrypto-ico-circular-progress {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.wpcrypto-ico-circular-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
            #F59E0B 0% calc(var(--progress) * 1%),
            transparent calc(var(--progress) * 1%) 100%
    );
    transition: all 1.5s ease;
}

.wpcrypto-ico-inner-circle {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: rgba(30, 41, 59, 0.95);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wpcrypto-ico-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2.8;
}

.wpcrypto-ico-circle {
    fill: none;
    stroke-width: 2.8;
    stroke: url(#gradient);
    stroke-linecap: round;
    transition: stroke-dasharray 1.5s ease-out;
}

.wpcrypto-ico-progress-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.wpcrypto-ico-progress-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.wpcrypto-ico-sale-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
}

.wpcrypto-ico-sale-current, .wpcrypto-ico-sale-total {
    text-align: center;
}

.wpcrypto-ico-sale-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.wpcrypto-ico-sale-title {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
}

.wpcrypto-ico-sale-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.wpcrypto-ico-timer-container {
    margin-bottom: 2rem;
}

.wpcrypto-ico-timer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.wpcrypto-ico-pulse {
    animation: pulse 2s infinite;
    color: #F59E0B;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.wpcrypto-ico-timer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.wpcrypto-ico-time-unit {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.8rem 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.wpcrypto-ico-time-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.wpcrypto-ico-time-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    animation: countFade 1s ease infinite;
}

.wpcrypto-ico-time-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.3rem;
}

@keyframes countFade {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.wpcrypto-ico-buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    color: #fff;
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wpcrypto-ico-buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.wpcrypto-ico-btn-shine {
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%
    );
    animation: shine 3s infinite;
}

.wpcrypto-ico-token-extra-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.wpcrypto-ico-token-bonus, .wpcrypto-ico-token-unlock {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.wpcrypto-ico-token-bonus i {
    color: #F59E0B;
}

.wpcrypto-ico-token-unlock i {
    color: #60A5FA;
}

.wpcrypto-ico-accepted-currencies {
    margin-top: 3rem;
    text-align: center;
    width: calc(100% - 4px);
    padding: 0 2px;
    margin-left: auto;
    margin-right: auto;
}

.wpcrypto-ico-accepted-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.wpcrypto-ico-currency-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.wpcrypto-ico-currency-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.wpcrypto-ico-currency-icon:hover {
    transform: translateY(-5px);
}

.wpcrypto-ico-currency-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wpcrypto-ico-currency-icon:hover img {
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.wpcrypto-ico-currency-icon span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.wpcrypto-ico-stat-animated {
    animation: slideInFromRight 0.6s ease-out forwards;
    opacity: 0;
}

.wpcrypto-ico-stat-animated:nth-child(1) {
    animation-delay: 0.1s;
}

.wpcrypto-ico-stat-animated:nth-child(2) {
    animation-delay: 0.2s;
}

.wpcrypto-ico-stat-animated:nth-child(3) {
    animation-delay: 0.3s;
}

.wpcrypto-ico-stat-animated:nth-child(4) {
    animation-delay: 0.4s;
}

.wpcrypto-ico-stat-animated:nth-child(5) {
    animation-delay: 0.5s;
}

.wpcrypto-ico-stat-animated:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*--------------------------------------------------------------
# 6. Token Calculator Section - Modern Design
--------------------------------------------------------------*/
.wpcrypto-ico-calculator-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    width: 100%;
    position: relative;
}

.wpcrypto-ico-calculator-modern {
    width: 100%;
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.wpcrypto-ico-calculator-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
}

.wpcrypto-ico-calculator-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
}

.wpcrypto-ico-calculator-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.wpcrypto-ico-gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wpcrypto-ico-calculator-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0;
}

.wpcrypto-ico-purchase-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 0 2rem 2rem;
}

.wpcrypto-ico-purchase-stat-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.wpcrypto-ico-purchase-stat-item:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    transform: translateY(-2px);
}

.wpcrypto-ico-purchase-stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.wpcrypto-ico-purchase-stat-content {
    display: flex;
    flex-direction: column;
}

.wpcrypto-ico-purchase-stat-label {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.wpcrypto-ico-purchase-stat-value {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.1rem;
}

.wpcrypto-ico-calculator-form-wrapper {
    padding: 2rem;
    background: #fafbfc;
}

.wpcrypto-ico-form-group {
    margin-bottom: 2rem;
}

.wpcrypto-ico-form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.wpcrypto-ico-form-label i {
    color: #3b82f6;
}

.wpcrypto-ico-input-container {
    position: relative;
    display: flex;
}

.wpcrypto-ico-modern-input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    padding-right: 5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    background: white;
    transition: all 0.3s ease;
    -moz-appearance: textfield;
}

.wpcrypto-ico-modern-input::-webkit-outer-spin-button,
.wpcrypto-ico-modern-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.wpcrypto-ico-modern-input:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.wpcrypto-ico-input-addon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: #64748b;
    font-size: 1.1rem;
}

.wpcrypto-ico-conversion-display {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid #e2e8f0;
}

.wpcrypto-ico-conversion-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.wpcrypto-ico-conversion-result {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wpcrypto-ico-conversion-label {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.wpcrypto-ico-conversion-value {
    color: #0f172a;
    font-size: 2rem;
    font-weight: 800;
}

.wpcrypto-ico-modern-button {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wpcrypto-ico-modern-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
}

.wpcrypto-ico-modern-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wpcrypto-ico-button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.wpcrypto-ico-button-shine {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.wpcrypto-ico-modern-button:hover .wpcrypto-ico-button-shine {
    left: 100%;
}

.wpcrypto-ico-payment-footer {
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wpcrypto-ico-security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 600;
}

.wpcrypto-ico-security-badge i {
    font-size: 1.25rem;
}

.wpcrypto-ico-payment-logos {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.wpcrypto-ico-payment-logos img {
    height: 24px;
    width: auto;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.wpcrypto-ico-payment-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.wpcrypto-ico-error-message {
    background-color: #FEF2F2;
    color: #B91C1C;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    border-left: 4px solid #EF4444;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

gap:

1.5
rem

;
align-items: flex-start

;
margin-bottom:

1.5
rem

;
}

.wpcrypto-ico-input-group {
    flex: 1.5;
    min-width: 220px;
}

.wpcrypto-ico-input-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.wpcrypto-ico-input-wrapper {
    position: relative;
}

.wpcrypto-ico-calculator-input {
    width: 100%;
    padding: 1rem 4rem 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.2s;
    background: #f8fafc;
}

.wpcrypto-ico-calculator-input:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    background: white;
}

.wpcrypto-ico-calculator-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.wpcrypto-ico-input-symbol {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-weight: 600;
    font-size: 1rem;
}

.wpcrypto-ico-result {
    flex: 1;
    min-width: 180px;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wpcrypto-ico-result-label {
    font-size: 0.9rem;
    color: #64748b;
}

.wpcrypto-ico-result-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
}

.wpcrypto-ico-calculator-actions {
    display: flex;
    gap: 1rem;
}

.wpcrypto-ico-buy-now-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 1.5rem;
    width: 100%;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #10b981;
    color: white;
    border: none;
    cursor: pointer;
}

.wpcrypto-ico-buy-now-button:hover:not(:disabled) {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.wpcrypto-ico-buy-now-button:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
}

.wpcrypto-ico-buy-now-button.pulse {
    animation: pulsate 1.5s ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulsate {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/*--------------------------------------------------------------
# 7. Benefits Section
--------------------------------------------------------------*/
.wpcrypto-ico-benefits-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #fff;
    width: 100%;
}

.wpcrypto-ico-benefits-container {
    width: calc(100% - 4px);
    margin: 0 auto;
    padding: 0 2px;
}

.wpcrypto-ico-main-card {
    display: flex;
    align-items: center;
    padding: 3rem 2rem;
    gap: 3rem;
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 24px;
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.wpcrypto-ico-main-content {
    flex: 1;
}

.wpcrypto-ico-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right,
    #FF2CF7 0%,
    #5B4FFF 50%,
    #31FFFF 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.wpcrypto-ico-main-desc {
    font-size: 1.25rem;
    color: #94A3B8;
    margin-bottom: 2rem;
}

.wpcrypto-ico-main-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.wpcrypto-ico-main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.wpcrypto-ico-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.wpcrypto-ico-benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 200px;
}

.wpcrypto-ico-benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
}

.wpcrypto-ico-benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 0.4rem;
}

.wpcrypto-ico-benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #818CF8;
}

.wpcrypto-ico-benefit-card p {
    font-size: 1rem;
    color: #94A3B8;
    line-height: 1.5;
}

.wpcrypto-ico-cta-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #818CF8 0%, #C084FC 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
}

.wpcrypto-ico-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(129, 140, 248, 0.3);
}

.wpcrypto-ico-sample-projects {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    color: white;
}

.wpcrypto-ico-sample-projects h3 {
    margin: 0 0 10px 0;
    color: white;
    font-size: 18px;
}

.wpcrypto-ico-sample-projects p {
    margin: 0 0 15px 0;
    opacity: 0.9;
}

.wpcrypto-ico-sample-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wpcrypto-ico-sample-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    border-radius: 6px !important;
    padding: 8px 16px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px);
}

.wpcrypto-ico-sample-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wpcrypto-ico-sample-btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/*--------------------------------------------------------------
# 8. Roadmap Section
--------------------------------------------------------------*/
.wpcrypto-ico-roadmap-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    position: relative;
    width: 100%;
}

.wpcrypto-ico-roadmap-section .wpcrypto-ico-section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.wpcrypto-ico-roadmap-section .wpcrypto-ico-section-desc {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.wpcrypto-ico-roadmap-timeline {
    position: relative;
    width: calc(100% - 4px);
    margin: 0 auto;
    padding: 2rem 0;
}

.wpcrypto-ico-roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.wpcrypto-ico-roadmap-event {
    --roadmap-color: #3b82f6;
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
    animation: fadeInUp 0.6s;
    animation-fill-mode: both;
}

.wpcrypto-ico-roadmap-event:last-child {
    margin-bottom: 0;
}

.wpcrypto-ico-roadmap-event:nth-child(1) {
    animation-delay: 0.1s;
}

.wpcrypto-ico-roadmap-event:nth-child(2) {
    animation-delay: 0.3s;
}

.wpcrypto-ico-roadmap-event:nth-child(3) {
    animation-delay: 0.5s;
}

.wpcrypto-ico-roadmap-event:nth-child(4) {
    animation-delay: 0.7s;
}

.wpcrypto-ico-roadmap-point {
    position: absolute;
    left: 40px;
    top: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.wpcrypto-ico-roadmap-point::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--roadmap-color);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.wpcrypto-ico-roadmap-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #0f172a;
    border: 3px solid #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.wpcrypto-ico-roadmap-event:hover .wpcrypto-ico-roadmap-number {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.7);
    transform: translate(-50%, -50%) scale(1.1);
    border-color: #60a5fa;
    color: #60a5fa;
}

.wpcrypto-ico-roadmap-icon i {
    font-size: 1.5rem;
    color: var(--roadmap-color);
    transition: all 0.3s ease;
}

.wpcrypto-ico-roadmap-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--roadmap-color);
    transition: all 0.3s ease;
}

.wpcrypto-ico-roadmap-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.wpcrypto-ico-roadmap-date i {
    color: var(--roadmap-color);
}

.wpcrypto-ico-roadmap-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.wpcrypto-ico-roadmap-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wpcrypto-ico-roadmap-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.wpcrypto-ico-roadmap-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.wpcrypto-ico-roadmap-detail i {
    color: var(--roadmap-color);
    font-size: 0.9rem;
}

.wpcrypto-ico-roadmap-event:hover .wpcrypto-ico-roadmap-content {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.wpcrypto-ico-roadmap-event:hover .wpcrypto-ico-roadmap-icon {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.wpcrypto-ico-roadmap-event:hover .wpcrypto-ico-roadmap-icon i {
    animation: pulseIcon 1s infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/*--------------------------------------------------------------
# 9. Team Section
--------------------------------------------------------------*/
.wpcrypto-ico-team-section {
    padding: 5rem 0;
    background: #f8fafc;
    width: 100%;
}

.wpcrypto-ico-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: calc(100% - 4px);
    margin: 0 auto;
    padding: 0 2px;
}

.wpcrypto-ico-team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.wpcrypto-ico-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.wpcrypto-ico-team-img {
    height: 240px;
    overflow: hidden;
}

.wpcrypto-ico-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.wpcrypto-ico-team-card:hover .wpcrypto-ico-team-img img {
    transform: scale(1.1);
}

.wpcrypto-ico-team-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    padding: 0 1.5rem;
}

.wpcrypto-ico-team-position {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}

.wpcrypto-ico-team-bio {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem;
}

/*--------------------------------------------------------------
# 10. Tokenomics Section - Düzeltilmiş
--------------------------------------------------------------*/
.wpcrypto-ico-tokenomics-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.wpcrypto-ico-tokenomics-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1.5" fill="%23CBD5E1"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.wpcrypto-ico-tokenomics-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 4px);
    margin: 0 auto 4rem;
    gap: 3rem;
    position: relative;
}

.wpcrypto-ico-tokenomics-chart {
    flex: 1;
    max-width: 400px;
    margin: 0 auto;
}

.wpcrypto-ico-pie-chart-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}

.wpcrypto-ico-pie-chart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: #f1f5f9;
    overflow: hidden;
}

.wpcrypto-ico-pie-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
            from 0deg,
            var(--color-1, #3b82f6) 0 var(--segment-1, 25%),
            var(--color-2, #ef4444) var(--segment-1, 25%) var(--segment-2, 50%),
            var(--color-3, #10b981) var(--segment-2, 50%) var(--segment-3, 75%),
            var(--color-4, #f59e0b) var(--segment-3, 75%) 100%
    );
}

.wpcrypto-ico-pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 20;
}

.wpcrypto-ico-pie-center-text {
    font-weight: 600;
    color: #334155;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.3;
}

.wpcrypto-ico-tokenomics-legend {
    flex: 1;
}

.wpcrypto-ico-tokenomics-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wpcrypto-ico-tokenomics-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.wpcrypto-ico-tokenomics-color {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    margin-right: 12px;
}

.wpcrypto-ico-tokenomics-label {
    flex: 1;
    font-weight: 500;
    color: #334155;
    margin-right: 12px;
}

.wpcrypto-ico-tokenomics-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    width: 100%;
    margin: 8px 0;
}

.wpcrypto-ico-tokenomics-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1.5s ease-in-out;
    width: 0;
}

.wpcrypto-ico-tokenomics-percentage {
    font-weight: 700;
    color: #334155;
    width: 50px;
    text-align: right;
}

.wpcrypto-ico-tokenomics-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: calc(100% - 4px);
    margin: 0 auto;
    padding: 0 2px;
}

.wpcrypto-ico-tokenomics-stat-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wpcrypto-ico-tokenomics-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.8s ease;
}

.wpcrypto-ico-tokenomics-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.wpcrypto-ico-tokenomics-stat-card:hover::before {
    left: 100%;
}

.wpcrypto-ico-stat-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.wpcrypto-ico-stat-label {
    font-size: 0.95rem;
    color: #64748b;
}

@keyframes rotateChart {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-bars .wpcrypto-ico-tokenomics-bar-fill {
    width: var(--percentage);
}

/*--------------------------------------------------------------
# 11. Admin Styles
--------------------------------------------------------------*/
.wpcrypto-ico-tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    overflow-x: auto;
    background: #f9f9f9;
    padding: 0 10px;
}

.wpcrypto-ico-tab {
    padding: 12px 15px;
    cursor: pointer;
    background: #f1f1f1;
    margin-right: 5px;
    border: 1px solid #ccc;
    border-bottom: none;
    border-radius: 3px 3px 0 0;
    font-weight: 500;
    color: #555;
    transition: all 0.2s ease;
}

.wpcrypto-ico-tab:hover {
    background: #f8f8f8;
    color: #333;
}

.wpcrypto-ico-tab.active {
    background: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
    font-weight: 600;
    color: #0073aa;
}

.wpcrypto-ico-tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
    background: #fff;
    margin-bottom: 20px;
}

.wpcrypto-ico-tab-content.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.wpcrypto-ico-tab-content h3 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #23282d;
    font-size: 1.3em;
}

.wpcrypto-ico-tab-content p {
    margin-bottom: 15px;
}

.wpcrypto-ico-tab-content label {
    font-weight: 600;
    margin-bottom: 5px;
    display: inline-block;
}

.wpcrypto-ico-tab-content small {
    color: #777;
    font-style: italic;
    display: block;
    margin-top: 3px;
}

.wpcrypto-ico-tab-content input[type="text"],
.wpcrypto-ico-tab-content input[type="number"],
.wpcrypto-ico-tab-content input[type="date"],
.wpcrypto-ico-tab-content input[type="datetime-local"],
.wpcrypto-ico-tab-content textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
    transition: border-color 0.3s;
}

.wpcrypto-ico-tab-content input:focus,
.wpcrypto-ico-tab-content textarea:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
    outline: none;
}

.wpcrypto-ico-tab-content > div {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #eee;
}

.wpcrypto-ico-tab-content > div:hover {
    background: #f5f5f5;
    border-color: #ddd;
}

.wpcrypto-ico-tooltip {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 5px;
    cursor: help;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.wpcrypto-ico-tooltip:hover {
    background: #2563eb;
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.wpcrypto-ico-tooltip-box {
    position: absolute;
    padding: 6px 12px;
    background: #333;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    z-index: 1000;
    max-width: 250px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    animation: fadeIn 0.3s;
}

.wpcrypto-ico-tooltip-box:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
}

.pulse-text {
    animation: pulseText 0.5s infinite alternate;
    color: #EF4444;
}

@keyframes pulseText {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.wpcrypto-ico-timer-ended {
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    color: #EF4444;
    animation: fadeIn 0.5s;
}

.wpcrypto-ico-tab-content input[type="color"] {
    width: 60px;
    height: 30px;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.wpcrypto-ico-upload-image {
    margin-left: 10px;
}

.wpcrypto-ico-tab-content h4 {
    background: #f0f0f1;
    padding: 10px 15px;
    margin: 20px -15px 15px;
    border-left: 4px solid #0073aa;
    font-size: 1.1em;
}

.wpcrypto-ico-notification {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-weight: 500;
}

.wpcrypto-ico-notification-error {
    background: #fee;
    color: #c33;
    border-left: 4px solid #c33;
}

.wpcrypto-ico-notification-success {
    background: #efe;
    color: #3c3;
    border-left: 4px solid #3c3;
}

.wpcrypto-ico-notification-info {
    background: #eef;
    color: #33c;
    border-left: 4px solid #33c;
}

/*--------------------------------------------------------------
# 12. Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 1024px) {
    .wpcrypto-ico-tokenomics-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .wpcrypto-ico-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wpcrypto-ico-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wpcrypto-ico-tokenomics-display {
        flex-direction: column;
        gap: 2rem;
    }

    .wpcrypto-ico-token-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wpcrypto-ico-token-documents {
        flex-wrap: wrap;
    }

    .wpcrypto-ico-doc-btn {
        min-width: 120px;
    }

    .wpcrypto-ico-currency-icons {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .wpcrypto-ico-hero {
        padding: 1.5rem 1rem;
        min-height: 50vh;
    }

    .wpcrypto-ico-hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.3;
    }

    .wpcrypto-ico-hero-subtitle {
        line-height: 1.3;
    }

    .wpcrypto-ico-info-boxes {
        flex-direction: column;
        margin-top: 2rem;
        padding: 0 2px;
        gap: 1rem;
    }

    .wpcrypto-ico-info-box {
        width: 100%;
    }

    .wpcrypto-ico-bg-elements {
        opacity: 0.12;
    }

    .wpcrypto-ico-bg-elements svg {
        transform: scale(0.8);
    }

    .wpcrypto-ico-vip-content,
    .wpcrypto-ico-neon-content,
    .wpcrypto-ico-hologram-content,
    .wpcrypto-ico-wave-content,
    .wpcrypto-ico-glass-content {
        padding: 0 1rem;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .wpcrypto-ico-vip-title-wrapper {
        flex-direction: column;
        gap: 4px;
    }

    .wpcrypto-ico-vip-title {
        font-size: 1.2rem;
    }

    .wpcrypto-ico-crown-icon {
        font-size: 1.5rem;
    }

    .wpcrypto-ico-vip-button {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .wpcrypto-ico-vip-banner,
    .wpcrypto-ico-neon-banner,
    .wpcrypto-ico-hologram-banner,
    .wpcrypto-ico-wave-banner,
    .wpcrypto-ico-glass-banner {
        height: auto;
        padding: 1rem 0;
    }

    .wpcrypto-ico-tokenomics-display {
        flex-direction: column;
    }

    .wpcrypto-ico-tokenomics-chart {
        margin-bottom: 2rem;
        max-width: 300px;
    }

    .wpcrypto-ico-tokenomics-stats {
        padding: 0 2px;
    }

    .wpcrypto-ico-stat-value {
        font-size: 0.9rem;
    }

    .wpcrypto-ico-token-header {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .wpcrypto-ico-stat-item {
        flex-wrap: wrap;
    }

    .wpcrypto-ico-stat-label, .wpcrypto-ico-stat-value {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    .wpcrypto-ico-stat-icon {
        margin: 0 auto;
    }

    .wpcrypto-ico-timer-container {
        padding: 0 1rem;
    }

    .wpcrypto-ico-time-value {
        font-size: 1.3rem;
    }

    .wpcrypto-ico-time-label {
        font-size: 0.7rem;
    }

    .wpcrypto-ico-currency-icon img {
        width: 35px;
        height: 35px;
    }

    .wpcrypto-ico-main-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .wpcrypto-ico-main-content {
        display: flex;
        flex-direction: column;
    }

    .wpcrypto-ico-cta-btn {
        order: 2;
        margin-top: 2rem;
    }

    .wpcrypto-ico-main-image {
        order: 1;
    }

    .wpcrypto-ico-main-title {
        font-size: 2.5rem;
    }

    .wpcrypto-ico-benefits-container {
        padding: 0 2px;
    }

    .wpcrypto-ico-main-desc {
        font-size: 1.1rem;
    }

    .wpcrypto-ico-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wpcrypto-ico-roadmap-timeline::before {
        left: 30px;
    }

    .wpcrypto-ico-roadmap-event {
        padding-left: 60px;
    }

    .wpcrypto-ico-roadmap-point {
        left: 20px;
    }

    .wpcrypto-ico-roadmap-details {
        grid-template-columns: 1fr;
    }

    .wpcrypto-ico-team-grid {
        grid-template-columns: 1fr;
    }

    .wpcrypto-ico-purchase-stats {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .wpcrypto-ico-purchase-stat-item {
        padding: 1rem;
        gap: 1rem;
    }

    .wpcrypto-ico-payment-logos {
        gap: 1rem;
    }

    .wpcrypto-ico-payment-logo {
        height: 24px;
    }
}

@media screen and (max-width: 782px) {
    .wpcrypto-ico-tab {
        padding: 10px 12px;
        font-size: 13px;
    }

    .wpcrypto-ico-tab-content {
        padding: 15px;
    }

    .wpcrypto-ico-upload-image {
        margin-top: 10px;
        margin-left: 0;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .wpcrypto-ico-main-title {
        font-size: 2rem;
    }

    .wpcrypto-ico-benefit-card {
        padding: 1.5rem;
    }

    .wpcrypto-ico-timer {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .wpcrypto-ico-time-unit {
        width: 48%;
    }

    .wpcrypto-ico-token-card {
        padding: 1.5rem 1rem;
    }

    .wpcrypto-ico-section-title {
        font-size: 2rem;
    }

    .wpcrypto-ico-token-header h3 {
        font-size: 1.5rem;
    }

    .wpcrypto-ico-token-symbol {
        font-size: 1rem;
    }

    .wpcrypto-ico-token-documents {
        gap: 8px;
    }

    .wpcrypto-ico-doc-btn {
        font-size: 0.8rem;
        padding: 10px 8px;
    }

    .wpcrypto-ico-time-unit {
        padding: 0.6rem 0.3rem;
    }

    .wpcrypto-ico-buy-button {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .wpcrypto-ico-sale-title {
        font-size: 0.75rem;
    }

    .wpcrypto-ico-sale-value {
        font-size: 1rem;
    }

    .wpcrypto-ico-roadmap-title {
        font-size: 1.3rem;
    }

    .wpcrypto-ico-tokenomics-stats {
        grid-template-columns: 1fr;
    }

    .wpcrypto-ico-payment-logo {
        height: 20px;
    }

    .wpcrypto-ico-calculator-actions {
        flex-direction: column;
    }
}

/* Checkout Page Styles */
.wpcrypto-ico-checkout-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.wpcrypto-ico-checkout-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.wpcrypto-ico-checkout-content {
    padding: 1rem 0;
}

.wpcrypto-ico-payment-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.wpcrypto-ico-payment-methods {
    margin: 1.5rem 0;
}

.wpcrypto-ico-payment-method {
    padding: 1rem;
    margin: 1rem 0;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wpcrypto-ico-payment-method:hover {
    border-color: #3b82f6;
    background-color: #f8fafc;
}

.wpcrypto-ico-payment-method label {
    cursor: pointer;
    font-weight: 500;
    margin-left: 10px;
}

.wpcrypto-ico-proceed-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.wpcrypto-ico-proceed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Error - Success */
.wpcrypto-ico-notification {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wpcrypto-ico-notification-error {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    border-left: 4px solid #dc2626;
}

.wpcrypto-ico-notification-success {
    background-color: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #16a34a;
}

.wpcrypto-ico-notification-info {
    background-color: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #2563eb;
}

.wpcrypto-ico-notification-warning {
    background-color: #fffbeb;
    color: #d97706;
    border: 1px solid #fed7aa;
    border-left: 4px solid #d97706;
}

/* Loading States */
.wpcrypto-ico-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wpcrypto-ico-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Form Validation States */
.wpcrypto-ico-field-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.wpcrypto-ico-field-success {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .wpcrypto-ico-token-card,
    .wpcrypto-ico-benefit-card,
    .wpcrypto-ico-team-card {
        border: 2px solid #000;
    }

    .wpcrypto-ico-buy-button,
    .wpcrypto-ico-cta-btn {
        border: 2px solid #000;
    }
}

/* Print Styles */
@media print {
    .wpcrypto-ico-hero,
    .wpcrypto-ico-calculator-section,
    .wpcrypto-ico-vip-banner,
    .wpcrypto-ico-neon-banner,
    .wpcrypto-ico-hologram-banner,
    .wpcrypto-ico-wave-banner,
    .wpcrypto-ico-glass-banner {
        display: none;
    }

    .wpcrypto-ico-section-title {
        color: #000;
    }

    .wpcrypto-ico-token-details {
        background: #fff;
        color: #000;
    }

    .wpcrypto-ico-token-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Focus States for Accessibility */
.wpcrypto-ico-buy-button:focus,
.wpcrypto-ico-cta-btn:focus,
.wpcrypto-ico-vip-button:focus,
.wpcrypto-ico-calculator-input:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .wpcrypto-ico-flash-line,
    .wpcrypto-ico-shine-effect,
    .wpcrypto-ico-wave,
    .bubble {
        animation: none;
    }
}