* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Amazon Ember', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #232f3e;
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 99, 132, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(54, 162, 235, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.aws-link {
    background: #7877c6;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
    margin-top: 2rem;
    display: inline-block;
    border: none;
}

.aws-link:hover {
    background: #6b6ab8;
    transform: translateY(-1px);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.hero {
    background: white;
    border-radius: 8px;
    padding: 60px 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7877c6 0%, #a855f7 100%);
    border-radius: 8px;
    opacity: 0.8;
}

.hero h1 {
    color: #232f3e;
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0 8px 0;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 18px;
    color: #687078;
    margin-bottom: 16px;
    font-weight: 400;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
    margin: 0 auto 20px auto;
    display: block;
}

.fun-facts {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.fun-facts::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 6px;
    opacity: 0.9;
}

.fun-facts h3 {
    text-align: left;
    color: #232f3e;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.fact-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 24px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #7877c6 0%, #a855f7 100%);
    border-radius: 4px;
    opacity: 0.7;
}

.fact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fact-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #232f3e;
}

.fact-card p {
    color: #687078;
    font-size: 18px;
    line-height: 1.5;
}

.fact-card a {
    color: #7877c6;
    text-decoration: none;
}

.fact-card a:hover {
    text-decoration: underline;
}

.aws-journey {
    background: white;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.aws-journey::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 6px;
    opacity: 0.8;
}

.aws-journey h3 {
    color: #232f3e;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.aws-journey p {
    font-size: 16px;
    color: #687078;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #7877c6;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #6b6ab8;
    transform: translateY(-1px);
}

/* CONTACT FORM STYLES - Added for contact form functionality */
.contact-form {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Contact form decorative element */
.contact-form::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 40px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    border-radius: 6px;
    opacity: 0.9;
}

.contact-form h3 {
    color: #232f3e;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-align: center;
}

.contact-form > p {
    font-size: 16px;
    color: #687078;
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.6;
}

/* Contact form container and layout */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Form message styles for success/error notifications */
.form-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #232f3e;
    margin-bottom: 8px;
    font-size: 16px;
}

/* Contact form input and textarea styles */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7877c6;
    background: white;
    box-shadow: 0 0 0 3px rgba(120, 119, 198, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact form submit button */
.contact-submit-btn {
    background: #7877c6;
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
    margin: 0 auto;
}

.contact-submit-btn:hover {
    background: #6b6ab8;
    transform: translateY(-1px);
}

/* LEAGUE LOOKUP STYLES */
.league-lookup {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.league-lookup h3 {
    color: #232f3e;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.league-lookup > p {
    font-size: 16px;
    color: #687078;
    margin-bottom: 32px;
    text-align: center;
}

.lookup-form-container {
    max-width: 500px;
    margin: 0 auto 32px;
}

.lookup-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-weight: 500;
    text-align: center;
}

.lookup-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.lookup-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #232f3e;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #c89b3c;
    background: white;
    box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.1);
}

.lookup-submit-btn {
    background: #c89b3c;
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
    margin: 0 auto;
}

.lookup-submit-btn:hover {
    background: #b8862e;
    transform: translateY(-1px);
}

.lookup-submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

/* Results display */
.summoner-results {
    max-width: 600px;
    margin: 0 auto;
    background: #f8fafc;
    border-radius: 8px;
    padding: 24px;
}

.summoner-card {
    background: white;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.summoner-card h5 {
    color: #c89b3c;
    font-size: 24px;
    margin-bottom: 8px;
}

.champions-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.champion-card {
    background: white;
    border-radius: 6px;
    padding: 16px;
    border-left: 4px solid #c89b3c;
}

.champion-card p {
    margin: 4px 0;
    font-size: 14px;
}

/* New Styles */


@media (max-width: 768px) {
    .league-lookup {
        padding: 24px;
    }
    
    .champions-grid {
        grid-template-columns: 1fr;
    }
}
/* END LEAGUE LOOKUP STYLES */

/* END CONTACT FORM STYLES */

footer {
    text-align: center;
    padding: 40px 20px;
    color: #687078;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .tagline {
        font-size: 16px;
    }

    .profile-photo {
        width: 100px;
        height: 100px;
    }

    main {
        padding: 20px;
    }

    .hero, .fun-facts, .aws-journey {
        padding: 24px;
    }

    /* Contact form mobile styles */
    .contact-form {
        padding: 24px;
    }

    .fun-facts h3, .aws-journey h3 {
        font-size: 24px;
    }

    /* Contact form mobile heading */
    .contact-form h3 {
        font-size: 24px;
    }
}    

    /* New Sizzle Styles */
    /* ==========================================
   GAMING-THEMED STYLES FOR LEAGUE LOOKUP
   ========================================== */

    /* League of Legends Section - Dark Gaming Theme */
    .league-lookup {
        background: linear-gradient(135deg, #0a1428 0%, #1a2942 100%);
        padding: 60px 20px;
        margin: 40px 0;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
    }

    /* Animated background effect */
    .league-lookup::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
        animation: pulse 15s ease-in-out infinite;
        pointer-events: none;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
        50% { transform: scale(1.2) rotate(180deg); opacity: 0.6; }
    }

    .league-header {
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        z-index: 1;
    }

    .league-header h3 {
        color: #4caf50;
        font-size: 2.5em;
        margin-bottom: 10px;
        text-shadow: 0 0 20px rgba(76, 175, 80, 0.5),
                    0 0 40px rgba(76, 175, 80, 0.3);
        animation: glow 3s ease-in-out infinite;
    }

    @keyframes glow {
        0%, 100% { text-shadow: 0 0 20px rgba(76, 175, 80, 0.5), 0 0 40px rgba(76, 175, 80, 0.3); }
        50% { text-shadow: 0 0 30px rgba(76, 175, 80, 0.8), 0 0 60px rgba(76, 175, 80, 0.5); }
    }

    .league-header p {
        color: #b0bec5;
        font-size: 1.1em;
    }

    /* Form Styling */
    .lookup-form-container {
        max-width: 600px;
        margin: 0 auto 40px;
        background: rgba(255, 255, 255, 0.05);
        padding: 30px;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(76, 175, 80, 0.2);
        position: relative;
        z-index: 1;
    }

    .lookup-form-container .form-group {
        margin-bottom: 25px;
    }

    .lookup-form-container label {
        display: block;
        color: #4caf50;
        font-weight: bold;
        margin-bottom: 8px;
        font-size: 1.1em;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .lookup-form-container input,
    .lookup-form-container select {
        width: 100%;
        padding: 15px;
        border: 2px solid rgba(76, 175, 80, 0.3);
        border-radius: 10px;
        background: rgba(26, 41, 66, 0.8);
        color: #fff;
        font-size: 1em;
        transition: all 0.3s ease;
    }

    .lookup-form-container input:focus,
    .lookup-form-container select:focus {
        outline: none;
        border-color: #4caf50;
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
        transform: translateY(-2px);
    }

    .help-text {
        display: block;
        color: #78909c;
        font-size: 0.85em;
        margin-top: 5px;
        font-style: italic;
    }

    .lookup-submit-btn {
        width: 100%;
        padding: 18px;
        background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 1.2em;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        overflow: hidden;
    }

    .lookup-submit-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .lookup-submit-btn:hover::before {
        width: 300px;
        height: 300px;
    }

    .lookup-submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    }

    .lookup-submit-btn:active {
        transform: translateY(-1px);
    }

    .lookup-submit-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

    .btn-loader {
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        100% { transform: rotate(360deg); }
    }

    /* Message Styling */
    .lookup-message {
        max-width: 600px;
        margin: 20px auto;
        padding: 15px 20px;
        border-radius: 10px;
        text-align: center;
        font-weight: bold;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .lookup-message.success {
        background: rgba(76, 175, 80, 0.2);
        border: 2px solid #4caf50;
        color: #4caf50;
    }

    .lookup-message.error {
        background: rgba(244, 67, 54, 0.2);
        border: 2px solid #f44336;
        color: #f44336;
    }

    /* Results Section */
    .summoner-results {
        max-width: 900px;
        margin: 0 auto;
        animation: fadeInUp 0.5s ease;
        position: relative;
        z-index: 1;
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Summoner Card */
    .summoner-card {
        background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(46, 125, 50, 0.1) 100%);
        padding: 30px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        gap: 25px;
        margin-bottom: 40px;
        border: 2px solid rgba(76, 175, 80, 0.3);
        box-shadow: 0 5px 25px rgba(76, 175, 80, 0.2);
        transition: transform 0.3s ease;
    }

    .summoner-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 35px rgba(76, 175, 80, 0.3);
    }

    .profile-icon {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 3px solid #4caf50;
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
        animation: iconPulse 2s ease-in-out infinite;
    }

    @keyframes iconPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }

    .summoner-details {
        flex: 1;
    }

    .summoner-name {
        color: #fff;
        font-size: 2em;
        margin: 0 0 10px 0;
        font-weight: bold;
    }

    .summoner-name .tag {
        color: #4caf50;
        font-weight: normal;
    }

    .summoner-level {
        color: #4caf50;
        font-size: 1.3em;
        margin: 0;
        font-weight: bold;
    }

    /* Champion Mastery Section */
    .champion-mastery-container {
        position: relative;
    }

    .mastery-title {
        color: #4caf50;
        font-size: 1.8em;
        margin-bottom: 30px;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .champions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 20px;
    }

    /* Individual Champion Card */
    .champion-card {
        background: linear-gradient(135deg, rgba(26, 41, 66, 0.95) 0%, rgba(10, 20, 40, 0.95) 100%);
        padding: 25px;
        border-radius: 15px;
        border: 2px solid rgba(76, 175, 80, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        animation: cardSlideIn 0.5s ease backwards;
    }

    @keyframes cardSlideIn {
        from {
            opacity: 0;
            transform: translateY(30px) scale(0.9);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .champion-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.2), transparent);
        transition: left 0.5s ease;
    }

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

    .champion-card:hover {
        transform: translateY(-10px) scale(1.03);
        border-color: #4caf50;
        box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
    }

    .champion-rank {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.2em;
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.5);
    }

    .champion-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .champion-icon {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        border: 3px solid #4caf50;
        box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
        transition: transform 0.3s ease;
    }

    .champion-card:hover .champion-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .champion-info {
        flex: 1;
    }

    .champion-name {
        color: #fff;
        font-size: 1.4em;
        margin: 0 0 5px 0;
        font-weight: bold;
    }

    .champion-title {
        color: #78909c;
        font-size: 0.9em;
        margin: 0;
        font-style: italic;
    }

    /* Mastery Stats */
    .mastery-stats {
        margin-top: 15px;
    }

    .stat-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(76, 175, 80, 0.2);
    }

    .stat-row:last-of-type {
        border-bottom: none;
        margin-bottom: 15px;
    }

    .stat-label {
        color: #b0bec5;
        font-size: 0.95em;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .stat-value {
        color: #4caf50;
        font-weight: bold;
        font-size: 1.1em;
    }

    .level-badge {
        background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 1em;
    }

    /* Progress Bar */
    .mastery-progress {
        width: 100%;
        height: 12px;
        background: rgba(76, 175, 80, 0.1);
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .progress-bar {
        height: 100%;
        background: linear-gradient(90deg, #4caf50 0%, #66bb6a 50%, #4caf50 100%);
        background-size: 200% 100%;
        border-radius: 10px;
        transition: width 1s ease;
        animation: shimmer 2s linear infinite;
        box-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
    }

    @keyframes shimmer {
        0% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }

    .no-data {
        text-align: center;
        color: #78909c;
        padding: 40px;
        font-size: 1.1em;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .league-header h3 {
            font-size: 2em;
        }
        
        .champions-grid {
            grid-template-columns: 1fr;
        }
        
        .summoner-card {
            flex-direction: column;
            text-align: center;
        }
        
        .profile-icon {
            width: 80px;
            height: 80px;
        }
        
        .summoner-name {
            font-size: 1.5em;
        }
    }

    /* Interactive Hover Effect for Entire Section */
    @media (hover: hover) {
        .champion-card {
            cursor: pointer;
        }
    }

    /* Compact Hero Section */
    .hero {
        padding: 40px 20px;  /* Reduce from whatever it currently is */
    }

    .hero .profile-photo {
        width: 100px;  /* Smaller profile image */
        height: 100px;
    }

    .hero h1 {
        font-size: 2em;  /* Reduce main heading */
        margin: 15px 0 5px 0;
    }

    .hero .tagline {
        font-size: 1em;  /* Reduce tagline */
        margin: 5px 0 15px 0;
    }

    .hero .aws-link {
        font-size: 0.9em;  /* Reduce link size */
    }