* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(45deg, #f7931e, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #f7931e;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #f7931e, #ffeb3b);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: 1.4rem;
    color: #b8bcc8;
    margin-bottom: 30px;
    font-weight: 400;
}

.cta-section {
    background: rgba(247, 147, 30, 0.1);
    border: 1px solid rgba(247, 147, 30, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
}

.cta-heading {
    font-size: 1.5rem;
    color: #f7931e;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-content {
    color: #b8bcc8;
    margin-bottom: 20px;
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 28px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: flex-start;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.app-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.app-button:hover::before {
    opacity: 1;
}

.ios-button {
    background: linear-gradient(145deg, #1c1c1e, #000000);
    color: #ffffff;
    border: 2px solid #333333;
}

.ios-button::before {
    background: linear-gradient(145deg, #2c2c2e, #1a1a1a);
}

.ios-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #555555;
}

.android-button {
    background: linear-gradient(145deg, #01875f, #34a853);
    color: #ffffff;
    border: 2px solid #01875f;
}

.android-button::before {
    background: linear-gradient(145deg, #00a06a, #3db85f);
}

.android-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(1, 135, 95, 0.3);
    border-color: #34a853;
}

.app-button-icon {
    font-size: 28px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.ios-button .app-button-icon {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.android-button .app-button-icon {
    background: linear-gradient(145deg, #ffffff, #e8f5e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-button:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

.app-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.app-button:hover::after {
    width: 100%;
    height: 100%;
}

@keyframes buttonGlow {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    50% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 20px rgba(247, 147, 30, 0.2);
    }
}

.app-buttons:hover .app-button {
    animation: buttonGlow 2s ease-in-out infinite;
}

.app-button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-button-small {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-button-large {
    font-size: 16px;
    font-weight: 600;
    margin-top: 2px;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 480px;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0px) rotateY(0deg);
    }

    50% {
        transform: translateY(-15px) rotateY(5deg);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 25px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-header {
    padding: 15px 20px 10px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #ffffff;
}

.phone-header .time {
    font-weight: 600;
}

.phone-header .indicators {
    display: flex;
    gap: 3px;
    align-items: center;
}

.app-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.app-logo-section {
    text-align: center;
    margin-bottom: 20px;
}

.app-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    border-radius: 15px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.3);
    position: relative;
}

.app-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffeb3b);
    border-radius: 17px;
    z-index: -1;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.app-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.app-subtitle {
    font-size: 10px;
    color: #b8bcc8;
    margin-bottom: 20px;
}

.news-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.category-tab {
    background: rgba(247, 147, 30, 0.1);
    border: 1px solid rgba(247, 147, 30, 0.3);
    color: #f7931e;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 9px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.category-tab.active {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    color: #ffffff;
    border-color: transparent;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
    animation: newsSlide 4s ease-in-out infinite;
}

@keyframes newsSlide {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(-2px);
        opacity: 0.9;
    }
}

.news-source {
    color: #f7931e;
    font-weight: 700;
    font-size: 8px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.news-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 9px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.news-meta {
    color: #888;
    font-size: 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-trend {
    color: #00ff88;
    font-weight: 600;
}

.phone-bottom-nav {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 8px;
    color: #888;
}

.nav-item.active {
    color: #f7931e;
}

/* App Showcase Section */
.app-showcase {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.showcase-item {
    text-align: center;
}

.showcase-phone {
    width: 260px;
    height: 520px;
    margin: 0 auto 30px;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 35px;
    padding: 15px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.showcase-phone:hover {
    transform: translateY(-10px);
}

.showcase-screen {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

/* Splash Screen Styles */
.splash-screen {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #2d1b69 100%);
    display: flex;
    flex-direction: column;
}

.splash-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
}

.splash-logo {
    position: relative;
    margin-bottom: 40px;
}

.big-app-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
    box-shadow: 0 15px 40px rgba(247, 147, 30, 0.4);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.floating-icons {
    position: absolute;
    width: 200px;
    height: 200px;
}

.floating-icon {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f7931e;
    font-size: 16px;
    animation: floatAround 8s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    bottom: 20px;
    left: 0;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    top: 50%;
    right: -20px;
    animation-delay: 4s;
}

@keyframes floatAround {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }

    25% {
        transform: translate(10px, -10px) rotate(90deg);
        opacity: 1;
    }

    50% {
        transform: translate(-5px, -15px) rotate(180deg);
        opacity: 0.8;
    }

    75% {
        transform: translate(-10px, 5px) rotate(270deg);
        opacity: 1;
    }
}

.splash-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.splash-subtitle {
    color: #b8bcc8;
    font-size: 14px;
    margin-bottom: 40px;
}

.loading-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 60px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: #f7931e;
    border-radius: 50%;
    animation: loadingDot 1.5s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes loadingDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.splash-footer {
    position: absolute;
    bottom: 20px;
    text-align: center;
    color: #666;
    font-size: 10px;
}

.splash-footer p {
    margin-bottom: 5px;
}

/* Feed Screen Styles */
.feed-screen {
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.feed-content {
    flex: 1;
    padding: 20px;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.feed-categories {
    display: flex;
    gap: 15px;
}

.feed-cat {
    font-size: 12px;
    color: #666;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.feed-cat.active {
    color: #007bff;
    border-bottom-color: #007bff;
    font-weight: 600;
}

.feed-actions {
    display: flex;
    gap: 10px;
}

.feed-action {
    width: 35px;
    height: 35px;
    background: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.article-preview {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.article-source {
    color: #dc3545;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.article-title {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-snippet {
    color: #333;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.article-meta {
    color: #666;
    font-size: 10px;
    margin-bottom: 10px;
}

.article-cta {
    color: #dc3545;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 15px;
}

.article-counter {
    background: #666;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    text-align: center;
    width: fit-content;
}

/* Analytics Screen Styles */
.analytics-screen {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    flex-direction: column;
}

.analytics-content {
    flex: 1;
    padding: 20px;
    color: white;
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.analytics-header h2 {
    font-size: 18px;
    font-weight: 700;
}

.live-indicator {
    font-size: 10px;
    color: #ff4444;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.price-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coin-symbol {
    font-weight: 700;
    color: #f7931e;
}

.coin-price {
    font-weight: 600;
}

.coin-change.positive {
    color: #00ff88;
    font-weight: 600;
}

.chart-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    position: relative;
    height: 80px;
}

.chart-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f7931e, #00ff88);
    border-radius: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.chart-dots {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.chart-dots span {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    animation: chartPulse 2s ease-in-out infinite;
}

.chart-dots span:nth-child(2) {
    animation-delay: 0.5s;
}

.chart-dots span:nth-child(3) {
    animation-delay: 1s;
}

.chart-dots span:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes chartPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

.trending-section h3 {
    font-size: 14px;
    margin-bottom: 15px;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 12px;
}

.trend-icon {
    font-size: 14px;
}

.showcase-description h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.showcase-description p {
    color: #b8bcc8;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 80px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: rgba(247, 147, 30, 0.5);
    box-shadow: 0 20px 60px rgba(247, 147, 30, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(45deg, #f7931e, #ffeb3b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-description {
    color: #b8bcc8;
    line-height: 1.7;
}

/* Stats Section */
.stats {
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #f7931e, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: #b8bcc8;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #0a0a1a;
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #f7931e;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section a {
    color: #b8bcc8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f7931e;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .phone-mockup {
        width: 200px;
        height: 350px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-button {
        width: 100%;
        max-width: 250px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-phone {
        width: 220px;
        height: 440px;
    }

    .big-app-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .splash-title {
        font-size: 22px;
    }

    .article-title {
        font-size: 14px;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #b8bcc8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}