/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Floating Trump */
.floating-trump {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s;
}

.floating-trump:hover {
    transform: scale(1.1);
}

.trump-face {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ffd700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.speech-bubble {
    position: absolute;
    background: white;
    border-radius: 10px;
    padding: 10px;
    top: -40px;
    right: 0;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

.floating-trump:hover .speech-bubble {
    opacity: 1;
}

/* Money Rain Animation */
.money-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3a8a, #7f1d1d);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.trump-silhouette {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/5/56/Donald_Trump_official_portrait.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    opacity: 0.1;
}

.hero-content {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.trump-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #ffd700;
    margin-right: 1rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.875rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Trump Quotes Ticker */
.trump-quotes-ticker {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    margin-top: 2rem;
    overflow: hidden;
    border-radius: 5px;
}

.ticker-content {
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Buttons */
.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
}

.button.primary {
    background: linear-gradient(135deg, #ffd700, #ff9900);
    color: #1e3a8a;
    border: 2px solid #ffd700;
}

.button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.button.secondary {
    background: white;
    color: #1e3a8a;
    border: 2px solid white;
}

.button.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f3f4f6, #ffffff);
    padding: 5rem 1rem;
    text-align: center;
}

.gold-frame {
    max-width: 64rem;
    margin: 0 auto;
    padding: 2rem;
    border: 8px solid #ffd700;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about h2 {
    color: #1e3a8a;
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.quote {
    font-style: italic;
    color: #1e3a8a;
    font-size: 1.5rem;
}

.trump-signature {
    margin-top: 2rem;
}

.signature {
    max-width: 200px;
    height: auto;
}

/* Tokenomics */
.tokenomics {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    padding: 5rem 1rem;
    text-align: center;
}

.tokenomics h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #ffd700;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.gold-card {
    background: linear-gradient(135deg, #ffd700, #ff9900);
    padding: 2rem;
    border-radius: 1rem;
    color: #1e3a8a;
    transform: perspective(1000px) rotateX(0deg);
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gold-card:hover {
    transform: perspective(1000px) rotateX(5deg) scale(1.02);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

/* Price Ticker */
.price-ticker {
    background: #1e3a8a;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-weight: bold;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ticker-item i {
    color: #ffd700;
}

/* Roadmap */
.roadmap {
    background: white;
    padding: 5rem 1rem;
}

.roadmap h2 {
    text-align: center;
    color: #1e3a8a;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.timeline {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #ffd700;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    display: flex;
    align-items: center;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    font-size: 1.25rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

/* Community */
.community {
    background: linear-gradient(135deg, #7f1d1d, #991b1b);
    color: white;
    padding: 5rem 1rem;
    text-align: center;
}

.community h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #ffd700;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.social-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s;
}

.social-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.social-card i {
    font-size: 2rem;
    color: #ffd700;
}

.member-count {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* FAQ */
.faq {
    background: white;
    padding: 5rem 1rem;
}

.faq h2 {
    text-align: center;
    color: #1e3a8a;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateX(10px);
}

.faq-item h3 {
    color: #1e3a8a;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item i {
    color: #ffd700;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.footer-content {
    max-width: 64rem;
    margin: 0 auto;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    margin-bottom: 1rem;
}

.slogan {
    color: #ffd700;
    font-weight: bold;
    margin: 1rem 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ffd700;
}

/* Animations */
.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .button {
        width: 100%;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-icon {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
    }

    .floating-trump {
        display: none;
    }
}