/**
 * Buy TRUMP Token Page Styles
 * Specialized styles for OFFICIAL TRUMP (TRUMP) cryptocurrency purchase guide
 */

/* Trump Hero Section */
.trump-hero {
    background: linear-gradient(135deg, #c9302c 0%, #e74c3c 50%, #f39c12 100%);
    color: #fff;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trump-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="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.trump-hero .container {
    position: relative;
    z-index: 1;
}

.trump-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.trump-hero h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.95;
}

.trump-hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f39c12;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* US Notice Section */
.us-notice {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.notice-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 30px;
    border-left: 5px solid #c9302c;
}

.notice-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c9302c, #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.notice-content h3 {
    color: #c9302c;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.notice-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.notice-content ul {
    list-style: none;
    padding: 0;
}

.notice-content ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.notice-content ul li::before {
    content: '🇺🇸';
    position: absolute;
    left: 0;
    top: 0;
}

/* US Exchanges Section */
.us-exchanges {
    padding: 80px 0;
    background: #f8f9fa;
}

.exchanges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.exchange-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.exchange-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.exchange-card.featured {
    border-color: #c9302c;
    transform: scale(1.05);
}

.exchange-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.exchange-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c9302c, #e74c3c);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.exchange-logo {
    margin-bottom: 20px;
}

.exchange-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.exchange-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.exchange-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.exchange-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-tag {
    background: #e8f5e8;
    color: #2c7a2c;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.exchange-fees {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.fee-label {
    color: #666;
    font-weight: 500;
}

.fee-value {
    color: #c9302c;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Enhanced Payment Methods */
.payment-method.popular {
    border: 2px solid #c9302c;
    background: linear-gradient(135deg, #fff5f5, #fff);
}

.payment-method.popular::before {
    content: '🇺🇸 POPULAR';
    position: absolute;
    top: -10px;
    right: 15px;
    background: #c9302c;
    color: white;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Referral Code Box Styles */
.referral-code-box {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    color: white;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.referral-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.referral-header i {
    font-size: 1.1rem;
}

.referral-code {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 12px 20px;
    margin: 10px 0;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.referral-code:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.referral-savings {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Referral Benefits Section */
.referral-benefits {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    margin-top: 40px;
    color: white;
}

.referral-benefits h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: white;
}

.referral-benefits h3 i {
    color: #f39c12;
    margin-right: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.benefit-item strong {
    color: #f39c12;
    font-weight: bold;
}

/* Enhanced Exchange Card for Featured Binance */
.exchange-card.featured .exchange-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.exchange-card.featured .btn-primary {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    transition: all 0.3s ease;
}

.exchange-card.featured .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5);
}

.exchange-card.featured .btn-primary i {
    margin-right: 8px;
}

/* Copy to Clipboard Functionality */
.referral-code[data-copied]::after {
    content: '✓ Copied!';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    opacity: 0;
    animation: fadeInOut 2s ease;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    20%, 80% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Trading Options */
.trading-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.trading-option {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid #c9302c;
}

.trading-option h4 {
    color: #c9302c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trading-option h4 i {
    font-size: 1.2rem;
}

.trading-steps {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid #e0e0e0;
}

.trading-steps h4 {
    color: #333;
    margin-bottom: 20px;
}

.trading-steps ol {
    list-style: none;
    counter-reset: step-counter;
}

.trading-steps ol li {
    counter-increment: step-counter;
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
}

.trading-steps ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #c9302c;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Storage Options */
.storage-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.storage-option {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.storage-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.storage-option.recommended {
    border-color: #c9302c;
    background: linear-gradient(135deg, #fff5f5, #fff);
}

.storage-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c9302c, #e74c3c);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.storage-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.storage-icon.exchange-wallet {
    background: linear-gradient(135deg, #3861fb, #6c3dfc);
}

.storage-icon.hardware-wallet {
    background: linear-gradient(135deg, #c9302c, #e74c3c);
}

.storage-icon.software-wallet {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.storage-option h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.pros h5 {
    color: #27ae60;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.cons h5 {
    color: #e74c3c;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros ul li, .cons ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}

.pros ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.cons ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.recommended-models {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Tax Section */
.tax-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.tax-section .section-title {
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.tax-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tax-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: #333;
    backdrop-filter: blur(10px);
}

.tax-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c9302c, #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.tax-card h3 {
    color: #c9302c;
    margin-bottom: 20px;
}

.tax-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tax-card ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.tax-card ul li::before {
    content: '📊';
    position: absolute;
    left: 0;
    top: 0;
}

.tax-disclaimer {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* FAQ Section Enhancements */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #c9302c;
}

.faq-item h3 {
    color: #c9302c;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Enhanced Tip Boxes */
.tip-box.warning {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left: 4px solid #f39c12;
    color: #856404;
}

.tip-box.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-left: 4px solid #28a745;
    color: #155724;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .trump-hero {
        padding: 80px 0 60px;
    }
    
    .trump-hero h1 {
        font-size: 2.5rem;
    }
    
    .trump-hero h2 {
        font-size: 1.4rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .notice-card {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    
    .notice-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        align-self: center;
    }
    
    .exchanges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .exchange-card.featured {
        transform: none;
    }
    
    .exchange-card.featured:hover {
        transform: translateY(-3px);
    }
    
    .trading-options {
        grid-template-columns: 1fr;
    }
    
    .storage-options {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tax-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Mobile Referral Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .referral-benefits {
        padding: 40px 0;
    }
    
    .referral-benefits h3 {
        font-size: 1.6rem;
    }
    
    .benefit-item {
        padding: 25px 15px;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    /* Mobile Referral Code */
    .referral-code-box {
        padding: 15px;
        margin: 15px 0;
    }
    
    .referral-code {
        font-size: 1.4rem;
        padding: 10px 15px;
        letter-spacing: 1px;
    }
    
    .referral-header {
        font-size: 0.85rem;
    }
    
    .referral-savings {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trump-hero h1 {
        font-size: 2rem;
    }
    
    .trump-hero p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .exchange-card,
    .storage-option,
    .tax-card,
    .faq-item {
        padding: 20px;
    }
    
    .notice-card {
        padding: 20px;
    }
    
    .trading-steps {
        padding: 20px;
    }
    
    /* Ultra Mobile Referral */
    .referral-code {
        font-size: 1.2rem;
        padding: 8px 12px;
    }
    
    .benefits-grid {
        gap: 15px;
    }
    
    .benefit-item {
        padding: 20px 10px;
    }
    
    .benefit-item h4 {
        font-size: 1.1rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
}

/* Print Styles */
@media print {
    .trump-hero {
        background: white !important;
        color: black !important;
        padding: 20px 0 !important;
    }
    
    .hero-cta,
    .cookie-consent,
    .social-links {
        display: none !important;
    }
    
    .exchange-card,
    .storage-option,
    .tax-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .trump-hero {
        background: #000 !important;
        color: #fff !important;
    }
    
    .exchange-card,
    .storage-option,
    .tax-card,
    .faq-item {
        border: 2px solid #000 !important;
    }
    
    .btn {
        border: 2px solid #000 !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .exchange-card,
    .storage-option,
    .trump-hero::before {
        transition: none !important;
        animation: none !important;
    }
    
    .exchange-card:hover,
    .storage-option:hover {
        transform: none !important;
    }
} 