/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #e74c3c;
    --primary-blue: #3498db;
    --primary-yellow: #f1c40f;
    --primary-green: #2ecc71;
    --primary-purple: #9b59b6;
    --primary-orange: #e67e22;

    --fire-gradient: linear-gradient(135deg, #ff6b6b, #ee5a24);
    --water-gradient: linear-gradient(135deg, #74b9ff, #0984e3);
    --electric-gradient: linear-gradient(135deg, #fdcb6e, #e17055);
    --grass-gradient: linear-gradient(135deg, #00b894, #00a085);

    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-gold: #ffd700;
    --accent-silver: #c0c0c0;

    --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.3);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Animation */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.energy-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(116, 185, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    animation: energyFlow 20s ease-in-out infinite;
}

@keyframes energyFlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

/* Floating Cards */
.card-floating {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    width: 80px;
    height: 120px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-card);
    animation: floatCard 15s linear infinite;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(45deg, var(--fire-gradient), var(--water-gradient));
    border-radius: 8px;
    opacity: 0.3;
}

.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.card-2 {
    top: 30%;
    right: 10%;
    animation-delay: -5s;
    animation-duration: 18s;
}

.card-3 {
    top: 60%;
    left: 8%;
    animation-delay: -10s;
    animation-duration: 22s;
}

.card-4 {
    top: 80%;
    right: 5%;
    animation-delay: -15s;
    animation-duration: 16s;
}

@keyframes floatCard {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Main Container */
.main-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 30px 0;
    text-align: center;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Professional Pokeball Logo */
.pokeball-logo {
    position: relative;
    width: 80px;
    height: 80px;
    cursor: pointer;
}

.pokeball-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff0000 50%, #ffffff 50%);
    border-radius: 50%;
    border: 4px solid #000;
    position: relative;
    animation: pokeballSpin 3s ease-in-out infinite;
    box-shadow: var(--shadow-glow);
}

.pokeball-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #000;
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pokeball-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes pokeballSpin {

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

    50% {
        transform: rotate(180deg);
    }
}

@keyframes dotPulse {

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

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.logo-text {
    text-align: left;
}

.brand-name {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-silver), var(--accent-gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    letter-spacing: 3px;
}

.brand-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 5px;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
}

.coming-soon-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.badge-text {
    background: var(--fire-gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-card);
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--fire-gradient);
    border-radius: 50px;
    filter: blur(10px);
    opacity: 0.7;
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    from {
        transform: scale(1);
        opacity: 0.7;
    }

    to {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #ff6b6b, #74b9ff, #ff6b6b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 2s ease-in-out infinite;
    display: inline-block;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Card Showcase */
.card-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.showcase-card {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 380px;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    border: 4px solid var(--accent-gold);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    transform-style: preserve-3d;
}

.showcase-card:hover {
    transform: translateY(-25px) rotateY(5deg) scale(1.05);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.6);
}

.card-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.card-preview-1 .card-glow {
    background: var(--fire-gradient);
}

.card-preview-2 .card-glow {
    background: var(--electric-gradient);
}

.card-preview-3 .card-glow {
    background: var(--water-gradient);
}

.card-preview-4 .card-glow {
    background: var(--grass-gradient);
}

.card-preview-5 .card-glow {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.card-preview-6 .card-glow {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.showcase-card:hover .card-glow {
    opacity: 0.8;
    filter: blur(8px);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    z-index: 2;
}

.card-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.card-name {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.6rem;
    color: #2c3e50;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.card-hp {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 14px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(238, 90, 36, 0.3);
}

.card-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    position: relative;
}

.pokemon-card-image {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.pokemon-card-image:hover {
    transform: scale(1.05);
}

.card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-type {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    text-align: center;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.card-type.fire {
    background: var(--fire-gradient);
}

.card-type.electric {
    background: var(--electric-gradient);
}

.card-type.water {
    background: var(--water-gradient);
}

.card-type.grass {
    background: var(--grass-gradient);
}

.card-type.psychic {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.card-type.fighting {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.card-rarity {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.card-attack {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 15px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.attack-name {
    font-weight: 700;
    color: #ecf0f1;
    font-size: 0.9rem;
}

.attack-damage {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 6px rgba(231, 76, 60, 0.3);
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: rgba(26, 26, 26, 0.5);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--fire-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-card);
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.feature-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Signup Section */
.signup-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(52, 73, 94, 0.9));
}

.signup-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.signup-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.signup-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.input-container {
    display: flex;
    max-width: 500px;
    margin: 0 auto 30px;
    background: var(--card-bg);
    border-radius: 50px;
    padding: 8px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: border-color 0.3s ease;
}

.input-container:focus-within {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.input-container input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 20px 25px;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.input-container input::placeholder {
    color: var(--text-secondary);
}

.submit-btn {
    background: var(--fire-gradient);
    border: none;
    padding: 20px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-card);
}

.signup-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.benefit i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background: var(--card-bg);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--card-bg);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    border-color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.social-link.twitter:hover {
    border-color: #1da1f2;
}

.social-link.instagram:hover {
    border-color: #e4405f;
}

.social-link.discord:hover {
    border-color: #7289da;
}

.social-link.youtube:hover {
    border-color: #ff0000;
}

.contact-info {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--card-bg);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.email-link:hover {
    border-color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.email-link i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.footer-info {
    text-align: center;
    color: var(--text-secondary);
}

.footer-info p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .card-showcase {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .card-showcase {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        padding: 0 15px;
    }

    .showcase-card {
        height: 320px;
    }

    .pokemon-card-image {
        width: 100px;
        height: 100px;
    }

    .card-name {
        font-size: 1.1rem;
    }

    .card-hp {
        font-size: 0.8rem;
        padding: 4px 8px;
    }

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

    .input-container {
        flex-direction: column;
        border-radius: 20px;
    }

    .submit-btn {
        border-radius: 20px;
        margin-top: 10px;
    }

    .signup-benefits {
        flex-direction: column;
        gap: 20px;
    }

    .social-links {
        gap: 20px;
    }

    .social-link {
        padding: 12px 20px;
    }

    .email-link {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
        gap: 15px;
    }

    .brand-name {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .card-showcase {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        gap: 10px;
        padding: 0 10px;
    }

    .showcase-card {
        height: 280px;
    }

    .pokemon-card-image {
        width: 80px;
        height: 80px;
    }

    .card-name {
        font-size: 1rem;
    }

    .card-hp {
        font-size: 0.7rem;
        padding: 3px 6px;
    }

    .card-type {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .attack-name {
        font-size: 0.8rem;
    }

    .attack-damage {
        font-size: 0.9rem;
        padding: 4px 8px;
    }

    .feature-card {
        padding: 30px 20px;
    }
}

/* Loading Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-content>* {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content>*:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-content>*:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content>*:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-content>*:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card {
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}
