/* Genel Stiller */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #2196F3;
    --accent-color: #FFC107;
    --text-color: #f5f0f0;
    --light-text: #d0d7d7;
    --dark-bg: #1a1a1a;
    --light-bg: #f9f9f9;
    --gradient: linear-gradient(135deg, #4CAF50, #2196F3);
    --modal-gradient: linear-gradient(135deg, #1a237e, #311b92);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Russo One', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Russo One', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: var(--primary-color);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.2rem;
}

.btn-play {
    background: var(--primary-color);
    margin-left: 15px;
}

.btn-play:hover {
    background: var(--accent-color);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Header ve Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    font-family: 'Russo One', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    margin-left: auto;
    margin-right: 20px;
}

.nav-links ul {
    display: flex;
    padding-top: 7px;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    position: relative;
    font-weight: 700;
    transition: color 0.3s;
    color: white;
    text-transform: uppercase;
    font-family: 'Russo One', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding-top: 70px; /* Navbar'ın altından başlaması için */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    z-index: 1;
    animation: fadeIn 1s ease-in-out;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Russo One', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Russo One', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* About Section */
.about {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Roadmap Section */
.roadmap {
    background-color: #f0f0f0;
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-content {
    position: relative;
    width: calc(50% - 40px);
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    left: calc(50% + 40px);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -50px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -50px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.timeline-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.timeline-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Tokenomics Section */
.tokenomics {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.tokenomics-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 30px;
}

.tokenomics-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 25px;
    color: white;
}

.token-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.token-name h3 {
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
    letter-spacing: 1px;
}

.token-chain {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.token-supply {
    text-align: right;
}

.token-supply span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.token-supply h3 {
    margin-top: 5px;
    font-family: 'Russo One', sans-serif;
}

.tokenomics-content {
    display: flex;
    flex-wrap: wrap;
    padding: 25px;
    gap: 20px;
}

.chart-container {
    flex: 1;
    min-width: 280px;
    height: 280px;
    position: relative;
}

.tokenomics-info {
    flex: 1;
    min-width: 280px;
}

.token-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.token-info-item {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 12px 15px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.token-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.color-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 15px;
}

.info h4 {
    margin-bottom: 3px;
    font-size: 1rem;
}

.info p {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
    color: var(--primary-color);
}

.tokenomics-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: #eee;
    margin-top: 10px;
}

.feature {
    background-color: white;
    padding: 20px;
    text-align: center;
    transition: background-color 0.3s;
}

.feature:hover {
    background-color: #f8f9fa;
}

.feature i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.feature h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.feature p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

@media screen and (max-width: 992px) {
    .tokenomics-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .token-info {
        flex-direction: column;
        text-align: center;
    }
    
    .token-supply {
        text-align: center;
        margin-top: 15px;
    }
    
    .tokenomics-features {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 40px 0 15px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 10px;
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.footer-links-grid a {
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links-grid a:hover {
    color: var(--accent-color);
}

.whitepaper-link {
    grid-column: span 2;
    margin-top: 5px;
    font-weight: 600;
    color: var(--accent-color);
}

.whitepaper-link i {
    margin-right: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 1.4rem;
}

.telegram {
    background: #0088cc;
}

.twitter {
    background: #1DA1F2;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        left: 60px !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -40px;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(0, 0, 0, 0.9);
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        margin-top: 7px;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .bar {
        background-color: white;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links h4::after, .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
} 

/* Token Address Style */
.token-address {
    font-size: 0.9rem;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-family: monospace;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Presale Modal Styles */
.presale-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.presale-modal-content {
    background: var(--modal-gradient);
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: var(--text-color);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalFadeIn 0.5s ease-in-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
}

.close-modal:hover {
    color: var(--accent-color);
}

.presale-header {
    text-align: center;
    margin-bottom: 30px;
}

.presale-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.presale-header h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--light-text);
    font-weight: 500;
}

#countdown {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-family: 'Russo One', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.presale-progress {
    margin-bottom: 30px;
}

.progress-container {
    width: 100%;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.progress-info {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
}

.price-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.price-card {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.price-header {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Russo One', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.presale-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#bnbAmount {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
}

#bnbAmount:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.presale-buy-btn {
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.presale-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.5);
}

.presale-buy-btn:active {
    transform: translateY(-1px);
}

@media screen and (max-width: 576px) {
    .price-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .presale-modal-content {
        padding: 20px;
        margin: 10% auto;
    }
    
    .presale-header h2 {
        font-size: 1.8rem;
    }
    
    #countdown {
        font-size: 1.6rem;
    }
} 