/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

/* Remove underlines from all links */
a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    position: relative;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4ecdc4;
}

.buy-btn {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(69, 183, 209, 0.2) 0%, transparent 50%);
    animation: heroAnimation 20s ease-in-out infinite;
}

@keyframes heroAnimation {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 400% 400%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4ecdc4;
    color: #0a0a0a;
    transform: translateY(-3px);
}

/* Hero Contract Section */
.hero-contract {
    margin-top: 50px;
    text-align: center;
    background: rgba(78, 205, 196, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.hero-contract-label {
    font-size: 1.1rem;
    color: #4ecdc4;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-contract-address {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid #4ecdc4;
    border-radius: 15px;
    padding: 15px 25px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: #4ecdc4;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.2);
    animation: contractGlow 2s ease-in-out infinite alternate;
}

@keyframes contractGlow {
    0% { box-shadow: 0 0 20px rgba(78, 205, 196, 0.2); }
    100% { box-shadow: 0 0 30px rgba(78, 205, 196, 0.4); }
}

.hero-contract-address:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: #45b7d1;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(78, 205, 196, 0.3);
}

.hero-contract-address i {
    font-size: 0.8rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-contract-address:hover i {
    opacity: 1;
}

/* Slogans Section */
.slogans {
    padding: 100px 0;
    background: #111111;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slogans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.slogan-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.slogan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.3);
}

.slogan-icon {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.slogan-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Revolution Section */
.revolution {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.revolution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.revolution-items {
    display: grid;
    gap: 20px;
}

.revolution-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 500;
}

.revolution-item i {
    font-size: 1.5rem;
}

.fa-times-circle {
    color: #ff6b6b;
}

.fa-check-circle {
    color: #4ecdc4;
}

.revolution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.revolution-graphic {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.street-to-moon {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 4rem;
}

.arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: #0a0a0a;
}

/* Contract Address Section */
.contract-section {
    margin-bottom: 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(69, 183, 209, 0.1) 100%);
    border: 2px solid rgba(78, 205, 196, 0.3);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contract-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    animation: contractShine 3s linear infinite;
}

@keyframes contractShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.contract-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.contract-address-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(78, 205, 196, 0.5);
    border-radius: 20px;
    padding: 30px 35px;
    margin: 0 auto 25px;
    max-width: 800px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.contract-address-card:hover {
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.1);
}

.contract-info {
    flex: 1;
}

.contract-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #ffffff;
    word-break: break-all;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.copy-btn {
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-left: 20px;
    white-space: nowrap;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
    background: linear-gradient(135deg, #45b7d1, #4ecdc4);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #96ceb4, #4ecdc4) !important;
    transform: scale(1.05);
}

.hero-contract-address.copied {
    background: rgba(150, 206, 180, 0.2) !important;
    border-color: #96ceb4 !important;
}

.contract-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ff6b6b;
    font-size: 0.9rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.contract-warning i {
    font-size: 1.1rem;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.tokenomics-card:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 205, 196, 0.3);
}

.tokenomics-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4ecdc4;
}

.network-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.network-current, .network-future {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.network-current {
    color: #4ecdc4;
}

.network-future {
    color: #b0b0b0;
}

.supply-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.supply-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.supply-label {
    color: #b0b0b0;
}

.supply-value {
    color: #4ecdc4;
    font-weight: 600;
}

.utility-list {
    list-style: none;
}

.utility-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}

.utility-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

/* Staking Section */
.staking {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.staking-dashboard {
    max-width: 1000px;
    margin: 0 auto;
}

.staking-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.1);
}

.stat-icon {
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.staking-interface {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.staking-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.staking-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4ecdc4;
    margin-bottom: 30px;
    text-align: center;
}

.wallet-connection {
    text-align: center;
}

.connect-wallet-btn {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.connected-wallet {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid #4ecdc4;
    border-radius: 15px;
    padding: 15px 25px;
    color: #4ecdc4;
    font-weight: 600;
}

.connected-wallet i {
    font-size: 1.2rem;
}

.balance-info {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.balance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.balance-item:last-child {
    border-bottom: none;
}

.balance-item span:first-child {
    color: #b0b0b0;
}

.balance-item span:last-child {
    color: #4ecdc4;
    font-weight: 600;
}

.stake-input-group {
    position: relative;
    margin-bottom: 10px;
}

.stake-input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 80px 15px 15px;
    color: white;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.stake-input-group input:focus {
    outline: none;
    border-color: #4ecdc4;
}

.input-suffix {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4ecdc4;
    font-weight: 600;
}

.min-stake-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.min-stake-info i {
    color: #4ecdc4;
}

.staking-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stake-btn, .claim-btn, .unstake-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.stake-btn {
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    color: white;
}

.stake-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.claim-btn {
    background: linear-gradient(135deg, #96ceb4, #4ecdc4);
    color: white;
}

.claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(150, 206, 180, 0.3);
}

.unstake-btn {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}

.unstake-btn:hover {
    background: #ff6b6b;
    color: white;
}

.staking-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4ecdc4;
    margin-bottom: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.info-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: #b0b0b0;
    line-height: 1.5;
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: #111111;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4ecdc4, #ff6b6b);
    transform: translateX(-50%);
}

.roadmap-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.roadmap-item:nth-child(odd) {
    justify-content: flex-start;
}

.roadmap-item:nth-child(even) {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.roadmap-marker {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #2d2d2d;
    border: 3px solid #4ecdc4;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.roadmap-marker.active {
    background: #4ecdc4;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.roadmap-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    width: 45%;
    backdrop-filter: blur(10px);
}

.roadmap-content h3 {
    color: #4ecdc4;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.roadmap-content ul {
    list-style: none;
}

.roadmap-content li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.roadmap-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4ecdc4;
}

/* Community Section */
.community {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    text-align: center;
}

.community-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(78, 205, 196, 0.1);
    border-color: #4ecdc4;
    color: #4ecdc4;
}

.social-link i {
    font-size: 2rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4ecdc4;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #808080;
}

/* Toast notification styles */
.toast {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes slideIn {
    from { 
        transform: translateX(100%); 
        opacity: 0; 
    }
    to { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

@keyframes slideOut {
    from { 
        transform: translateX(0); 
        opacity: 1; 
    }
    to { 
        transform: translateX(100%); 
        opacity: 0; 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .buy-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        border-radius: 18px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .slogans-grid {
        grid-template-columns: 1fr;
    }
    
    .revolution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline:before {
        left: 20px;
    }
    
    .roadmap-item {
        justify-content: flex-start !important;
        flex-direction: row !important;
        padding-left: 50px;
    }
    
    .roadmap-marker {
        left: 20px !important;
        transform: translateX(-50%);
    }
    
    .roadmap-content {
        width: 100%;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .buy-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        border-radius: 15px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 16px;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    .slogan-card {
        padding: 20px;
    }
    
    .tokenomics-card {
        padding: 25px;
    }
    
    .contract-address-card {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .copy-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .contract-address {
        font-size: 0.9rem;
    }
    
    .hero-contract-address {
        font-size: 0.8rem;
        padding: 10px 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-contract-address span {
        word-break: break-all;
        text-align: center;
    }
    
    .staking-interface {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .staking-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .staking-card {
        padding: 25px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Extra small mobile devices */
@media (max-width: 320px) {
    .buy-btn {
        padding: 4px 8px;
        font-size: 0.6rem;
        border-radius: 12px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .nav {
        padding: 0 10px;
    }
    
    .container {
        padding: 0 15px;
    }
}
