/* Artist Benefits Section */
.artist-benefits {
    min-height: 100vh;
    padding: var(--section-padding);
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 17, 0.9) 0%,
        rgba(26, 26, 30, 0.85) 50%,
        rgba(13, 13, 17, 0.9) 100%
    );
    background-image: url('../public/artists_background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.artist-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 17, 0.8) 0%,
        rgba(26, 26, 30, 0.7) 50%,
        rgba(13, 13, 17, 0.8) 100%
    );
    z-index: 1;
}

.artist-benefits .container {
    position: relative;
    z-index: 2;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(
        145deg,
        rgba(26, 26, 26, 0.6) 0%,
        rgba(40, 40, 45, 0.6) 50%,
        rgba(26, 26, 26, 0.6) 100%
    );
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.benefit-item:hover {
    transform: translateX(8px) scale(1.02);
    background: linear-gradient(
        145deg,
        rgba(2, 113, 252, 0.05) 0%,
        rgba(40, 40, 45, 0.8) 50%,
        rgba(2, 113, 252, 0.05) 100%
    );
    border-color: rgba(2, 113, 252, 0.2);
    box-shadow: 
        0 4px 16px rgba(2, 113, 252, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--secondary-gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 24px rgba(74, 144, 226, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

.benefit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefits-visual {
    display: flex;
    justify-content: center;
}

.artist-hub-mockup {
    background: var(--dark-tertiary);
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mockup-header {
    background: var(--dark-secondary);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mockup-controls {
    display: flex;
    gap: 0.5rem;
}

.mockup-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-secondary);
}

.mockup-controls span:first-child {
    background: #ff5f57;
}

.mockup-controls span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-controls span:last-child {
    background: #28ca42;
}

.mockup-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.mockup-content {
    padding: 1.5rem;
}

.dashboard-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.revenue-chart {
    display: flex;
    gap: 0.5rem;
    align-items: end;
    height: 80px;
    margin-bottom: 1.5rem;
}

.chart-bar {
    flex: 1;
    background: var(--primary-gradient);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: chartGrow 1s ease-out;
}

@keyframes chartGrow {
    from { height: 0; }
}

.dashboard-stats {
    display: flex;
    gap: 1.5rem;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Token Section */
.token-section {
    padding: var(--section-padding);
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-secondary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.token-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
    will-change: auto;
}

.token-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 11, 0.40) 0%,
        rgba(26, 26, 27, 0.50) 50%,
        rgba(10, 10, 11, 0.40) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.token-section .container {
    position: relative;
    z-index: 2;
}

.token-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.token-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.token-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.token-feature {
    position: relative;
    background: linear-gradient(
        145deg,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(40, 40, 45, 0.7) 50%,
        rgba(26, 26, 26, 0.7) 100%
    );
    backdrop-filter: blur(5px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    padding: 3rem 2rem 2rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.token-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.token-feature:hover {
    transform: translateY(-4px) scale(1.02);
    background: linear-gradient(
        145deg,
        rgba(2, 113, 252, 0.05) 0%,
        rgba(40, 40, 45, 0.95) 50%,
        rgba(2, 113, 252, 0.05) 100%
    );
    border-color: rgba(2, 113, 252, 0.3);
    box-shadow: 
        0 8px 24px rgba(2, 113, 252, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.token-feature:hover::before {
    transform: scaleX(1);
}

.token-feature::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(
        45deg,
        rgba(2, 113, 252, 0.2),
        rgba(74, 144, 226, 0.2),
        rgba(2, 113, 252, 0.2)
    );
    border-radius: calc(var(--border-radius) + 1px);
    opacity: 0;
    filter: blur(4px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.token-feature:hover::after {
    opacity: 1;
}

.token-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.token-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.token-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.token-vinyl-container {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vinyl-record {
    width: 100%;
    height: 100%;
    position: relative;
    animation: vinylRotate 8s linear infinite;
    transition: animation-duration 0.3s ease;
    transform: scale(1.5);
}

@keyframes vinylRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 
        0 0 30px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(2, 113, 252, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, 
        rgba(2, 113, 252, 0.9) 0%,
        rgba(2, 86, 214, 0.8) 50%,
        rgba(26, 26, 26, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 0 20px rgba(2, 113, 252, 0.4),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.token-symbol {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 
        0 0 10px rgba(255,255,255,0.5),
        0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    animation: none; /* Remove rotation from text */
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-note {
    position: absolute;
    font-size: 2rem;
    color: #0271FC;
    opacity: 0.6;
    animation: float-note 6s ease-in-out infinite;
}

.note-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.note-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1.5s;
}

.note-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.note-4 {
    top: 40%;
    right: 30%;
    animation-delay: 4.5s;
}

@keyframes float-note {
    0%, 100% { transform: translateY(0px); opacity: 0.7; }
    50% { transform: translateY(-8px); opacity: 1; }
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background: var(--dark-secondary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.testimonials-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 11, 0.70) 0%,
        rgba(26, 26, 27, 0.60) 50%,
        rgba(10, 10, 11, 0.70) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    position: relative;
    background: linear-gradient(
        145deg,
        rgba(26, 26, 26, 0.9) 0%,
        rgba(40, 40, 45, 0.9) 50%,
        rgba(26, 26, 26, 0.9) 100%
    );
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--text-accent);
    opacity: 0.3;
    font-family: serif;
    transition: all 0.4s ease;
    z-index: 3;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(
        145deg,
        rgba(2, 113, 252, 0.03) 0%,
        rgba(40, 40, 45, 0.95) 50%,
        rgba(2, 113, 252, 0.03) 100%
    );
    border-color: rgba(2, 113, 252, 0.2);
    box-shadow:
        0 8px 24px rgba(2, 113, 252, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 1px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.testimonial-card:hover::before {
    opacity: 0.6;
    transform: scale(1.1);
    color: #74b9ff;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        rgba(2, 113, 252, 0.3),
        rgba(74, 144, 226, 0.3),
        rgba(2, 113, 252, 0.3)
    );
    border-radius: calc(var(--border-radius-large) + 2px);
    opacity: 0;
    filter: blur(6px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(2, 113, 252, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(2, 113, 252, 0.2);
}

.testimonial-card:hover .author-avatar {
    border-color: rgba(2, 113, 252, 0.6);
    box-shadow: 0 8px 32px rgba(2, 113, 252, 0.4);
    transform: scale(1.05);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.author-stats {
    font-size: 0.8rem;
    color: #0271FC;
    font-weight: 500;
}

.artist-website-link {
    display: inline-block;
    padding: 6px 12px;
    background: transparent;
    color: #0271FC;
    border: 1px solid rgba(2, 113, 252, 0.4);
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-smooth);
    margin-left: 8px;
}

.artist-website-link:hover {
    background: rgba(2, 113, 252, 0.1);
    border-color: #0271FC;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 113, 252, 0.2);
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(2, 113, 252, 0.1) 0%, rgba(2, 86, 214, 0.1) 100%);
    text-align: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.cta-title::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(2, 113, 252, 0.3);
}

.cta-title:hover::before {
    width: 100%;
    box-shadow: 0 0 20px rgba(2, 113, 252, 0.6);
}

.cta-title:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.cta-buttons:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(2, 113, 252, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn {
    min-width: 180px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Platform Showcase Section */
.platform-showcase {
    min-height: 100vh;
    padding: calc(var(--section-padding) * 1.2);
    background: var(--dark-secondary);
    background: linear-gradient(135deg, var(--dark-secondary) 0%, rgba(26, 26, 27, 0.5) 100%), url('../public/from_platform.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    scroll-margin-top: 80px; /* Specific scroll margin for this section */
}

.platform-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 11, 0.40) 0%,
        rgba(26, 26, 27, 0.50) 50%,
        rgba(10, 10, 11, 0.40) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.platform-showcase .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90vh;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
}

.showcase-item {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 400px; /* Ensure minimum height for content */
}

.showcase-item:hover {
    transform: translateY(-8px);
    z-index: 10; /* Ensure hovered item is above others */
}

.showcase-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 350px; /* Ensure consistent height */
    display: flex;
    flex-direction: column;
}

.showcase-item:hover .showcase-image-container {
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(2, 113, 252, 0.2);
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 350px;
}

.showcase-item:hover .showcase-image {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(2, 113, 252, 0.4) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    backdrop-filter: blur(2px);
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.showcase-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    z-index: 2;
    padding: 2rem 1rem;
    padding-bottom: 3rem;
    margin: 2rem 1.5rem;
}

.showcase-item:hover .showcase-content {
    transform: translateY(0);
}

.showcase-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.showcase-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.showcase-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-top: 1rem;
}

.feature-tag {
    background: rgba(2, 113, 252, 0.25);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(2, 113, 252, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-tag:hover {
    background: rgba(2, 113, 252, 0.5);
    border-color: rgba(2, 113, 252, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(2, 113, 252, 0.3);
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    text-align: center;
    margin-top: 4rem;
}

.platform-stats .stat-item {
    position: relative;
    padding: 2rem 1rem;
    background: linear-gradient(
        145deg,
        rgba(26, 26, 26, 0.9) 0%,
        rgba(40, 40, 45, 0.9) 50%,
        rgba(26, 26, 26, 0.9) 100%
    );
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.platform-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.platform-stats .stat-item:hover {
    transform: translateY(-4px) scale(1.02);
    background: linear-gradient(
        145deg,
        rgba(2, 113, 252, 0.05) 0%,
        rgba(40, 40, 45, 0.95) 50%,
        rgba(2, 113, 252, 0.05) 100%
    );
    border-color: rgba(2, 113, 252, 0.3);
    box-shadow: 
        0 8px 24px rgba(2, 113, 252, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.platform-stats .stat-item:hover::before {
    transform: scaleX(1);
}

.platform-stats .stat-item::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(
        45deg,
        rgba(2, 113, 252, 0.2),
        rgba(74, 144, 226, 0.2),
        rgba(2, 113, 252, 0.2)
    );
    border-radius: calc(var(--border-radius) + 1px);
    opacity: 0;
    filter: blur(4px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.platform-stats .stat-item:hover::after {
    opacity: 1;
}

.platform-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #0271FC 0%, #74b9ff 50%, #0271FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #0271FC; /* Fallback color for browsers that don't support background-clip */
    text-shadow: 0 2px 8px rgba(2, 113, 252, 0.3);
    transition: all 0.3s ease;
    font-feature-settings: "tnum" 1; /* Use tabular numbers for consistent spacing */
    font-variant-numeric: tabular-nums;
}

/* Support for browsers that don't support background-clip */
@supports not (background-clip: text) {
    .platform-stats .stat-number {
        color: #0271FC;
        background: none;
        -webkit-text-fill-color: unset;
    }
}

.platform-stats .stat-item:hover .stat-number {
    transform: scale(1.05);
    background: linear-gradient(135deg, #0271FC 0%, #ffffff 50%, #0271FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 16px rgba(2, 113, 252, 0.5);
}

.platform-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Power Cards Simple Row Layout */
.power-cards-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 1400px;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.power-card {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    height: 180px;
    background: linear-gradient(
        135deg,
        rgba(2, 113, 252, 0.12) 0%,
        rgba(2, 86, 214, 0.08) 50%,
        rgba(2, 113, 252, 0.10) 100%
    );
    border: 1px solid rgba(2, 113, 252, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    box-shadow: 
        0 8px 32px rgba(2, 113, 252, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.power-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(2, 113, 252, 0.15),
        transparent
    );
    transition: left 0.8s ease;
}

.power-card:hover::before {
    left: 100%;
}

.power-card:hover {
    transform: translateY(-8px) scale(1.03);
    background: linear-gradient(
        135deg,
        rgba(2, 113, 252, 0.18) 0%,
        rgba(2, 86, 214, 0.12) 50%,
        rgba(2, 113, 252, 0.15) 100%
    );
    border-color: rgba(2, 113, 252, 0.4);
    box-shadow: 
        0 16px 48px rgba(2, 113, 252, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.power-card-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.power-card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.power-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.8;
}

.power-card:hover .power-card-content h3 {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(2, 113, 252, 0.6);
}

.power-card:hover .power-card-content p {
    opacity: 1;
    color: var(--text-primary);
}

/* Remove all complex positioning - simple row layout */
.power-card-1, .power-card-2, .power-card-3, .power-card-4, .power-card-5 {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    z-index: auto !important;
}

/* Animation entrance */
@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.power-card {
    animation: cardEntrance 0.6s ease-out forwards;
    opacity: 0;
}

.power-card-1 { animation-delay: 0.1s; }
.power-card-2 { animation-delay: 0.2s; }
.power-card-3 { animation-delay: 0.3s; }
.power-card-4 { animation-delay: 0.4s; }
.power-card-5 { animation-delay: 0.5s; }

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .platform-showcase {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .token-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .testimonials {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 1rem;
    }
    
    .showcase-item {
        margin-bottom: 2rem;
        min-height: 500px;
    }
    
    .showcase-image-container {
        min-height: 500px;
    }
    
    .showcase-overlay {
        opacity: 1 !important;
        padding: 3rem 2rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .showcase-content {
        transform: translateY(0) !important;
        padding: 2rem 1rem;
        padding-bottom: 3rem;
        margin: 0;
    }
    
    .showcase-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .showcase-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
} 