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

body {
    font-family: 'Fredoka', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    z-index: 1000;
    padding: 15px 0;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.header-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
    100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 80px 0;
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.3) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="coin" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="8" fill="none" stroke="rgba(255,215,0,0.2)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23coin)"/></svg>');
    opacity: 0.6;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    width: 100%;
}

.hero-text {
    z-index: 2;
}

.title {
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00, #FFD700);
    background-size: 400% 400%;
    -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);
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-top: 10px;
    opacity: 0.9;
}

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

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Contract Section */
.contract-section {
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.contract-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.contract-copier {
    display: flex;
    gap: 15px;
    align-items: center;
}

#contractAddress {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

#contractAddress:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.copy-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    border-radius: 12px;
    padding: 15px 25px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.copy-icon {
    width: 18px;
    height: 18px;
}

.copy-feedback {
    color: #FFD700;
    font-weight: 600;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-feedback.show {
    opacity: 1;
}

/* Logo Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 250px;
    height: 250px;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
    animation: logoFloat 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.logo-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-15px) rotate(2deg); 
    }
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.1); 
    }
}

/* Social Section */
.social-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    margin-top: -20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.social-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.social-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.2) contrast(1.3) saturate(0.8);
    opacity: 0.4;
    transform: scale(1.1);
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(255, 215, 0, 0.15) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.social-section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 600;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    text-decoration: none;
    color: #FFD700;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.2);
}

.social-icon {
    width: 24px;
    height: 24px;
}

.twitter:hover {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}

.telegram:hover {
    background: linear-gradient(45deg, #0088cc, #0077b3);
}

/* Good Deeds Section */
.good-deeds-section {
    padding: 100px 0;
    background: rgba(255, 215, 0, 0.08);
    backdrop-filter: blur(10px);
    margin: 80px 0;
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
    overflow: hidden;
}

.good-deeds-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.good-deeds-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: brightness(0.25) contrast(1.2) saturate(0.7);
    opacity: 0.35;
    transform: scale(1.05);
}

.good-deeds-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(255, 215, 0, 0.12) 50%, rgba(0, 0, 0, 0.85) 100%);
}

.good-deeds-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.good-deeds-title {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.good-deeds-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    font-weight: 400;
    line-height: 1.6;
}

.deeds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.deed-card {
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.deed-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;
}

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

.deed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.deed-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    animation: iconGlow 2s ease-in-out infinite alternate;
}

.deed-icon svg {
    width: 30px;
    height: 30px;
    color: #000;
}

@keyframes iconGlow {
    0% { box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4); }
    100% { box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6); }
}

.deed-card h3 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.deed-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
}

.deed-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 215, 0, 0.1);
}

.deed-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.good-deeds-footer {
    margin-top: 40px;
}

.good-deeds-x-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    padding: 15px 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    background: rgba(255, 215, 0, 0.1);
    font-size: 1.1rem;
}

.good-deeds-x-link svg {
    width: 20px;
    height: 20px;
}

.good-deeds-x-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Sources Section */
.sources-section {
    padding: 100px 0;
    background: rgba(255, 215, 0, 0.05);
    backdrop-filter: blur(10px);
    margin: 80px 0;
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.1);
    overflow: hidden;
}

.sources-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.sources-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.1) contrast(1.5) saturate(0.5);
    opacity: 0.3;
}

.sources-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(255, 215, 0, 0.1) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.sources-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 600;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.source-card {
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.source-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.source-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.source-avatar {
    flex-shrink: 0;
}

.avatar-dog {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    position: relative;
    animation: avatarBounce 2s ease-in-out infinite;
}

.avatar-dog.kabosu {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.avatar-dog.kumaneene {
    background: linear-gradient(45deg, #3498db, #2980b9);
}

@keyframes avatarBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.source-info h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.source-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-style: italic;
}

.source-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.source-link:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Footer */
.footer {
    text-align: center;
    padding: 60px 0;
    color: rgba(255, 215, 0, 0.8);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
    filter: brightness(0.15) contrast(1.4) saturate(0.6);
    opacity: 0.5;
    transform: scale(1.05);
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(255, 215, 0, 0.1) 50%, rgba(0, 0, 0, 0.95) 100%);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    animation: logoGlow 2s ease-in-out infinite alternate;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
        max-width: 900px;
    }
    
    .title-main {
        font-size: 3.5rem;
    }
    
    .sources-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 60px 0;
        margin-bottom: 40px;
    }
    
    .hero-banner {
        object-position: center 20%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        max-width: 100%;
    }
    
    .title-main {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .title-sub {
        font-size: 1.2rem;
        margin-top: 8px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .contract-section {
        padding: 25px;
        margin: 0 10px;
    }
    
    .contract-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .contract-copier {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    #contractAddress {
        font-size: 0.8rem;
        padding: 12px 15px;
    }
    
    .copy-btn {
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .logo-container {
        width: 220px;
        height: 220px;
    }
    
    .hero-logo {
        width: 180px;
        height: 180px;
    }
    
    .logo-glow {
        width: 220px;
        height: 220px;
    }
    
    .social-section {
        padding: 80px 0;
        margin-top: 0;
    }
    
    .good-deeds-section {
        padding: 80px 0;
        margin: 60px 0;
        border-radius: 20px;
    }
    
    .good-deeds-title {
        font-size: 2.5rem;
    }
    
    .good-deeds-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .deeds-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .deed-card {
        padding: 30px 25px;
    }
    
    .deed-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
    
    .deed-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .deed-card h3 {
        font-size: 1.3rem;
    }
    
    .social-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 18px 25px;
        font-size: 1rem;
    }
    
    .sources-section {
        padding: 80px 0;
        margin: 50px 0;
        border-radius: 20px;
    }
    
    .sources-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .sources-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .source-card {
        padding: 25px;
    }
    
    .source-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .source-info h4 {
        font-size: 1.1rem;
    }
    
    .source-text {
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 30px 0;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 80px 0 40px 0;
        margin-bottom: 20px;
    }
    
    .hero-content {
        gap: 25px;
    }
    
    .title-main {
        font-size: 2.5rem;
        line-height: 1;
    }
    
    .title-sub {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 5px;
        margin-bottom: 25px;
    }
    
    .contract-section {
        padding: 20px;
        margin: 0 5px;
    }
    
    .contract-section h3 {
        font-size: 1.1rem;
    }
    
    #contractAddress {
        font-size: 0.75rem;
        padding: 10px 12px;
    }
    
    .copy-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .logo-container {
        width: 180px;
        height: 180px;
    }
    
    .hero-logo {
        width: 150px;
        height: 150px;
    }
    
    .logo-glow {
        width: 180px;
        height: 180px;
    }
    
    .social-section {
        padding: 70px 0;
        margin-top: 0;
    }
    
    .good-deeds-section {
        padding: 70px 0;
        margin: 50px 0;
    }
    
    .good-deeds-title {
        font-size: 2rem;
    }
    
    .good-deeds-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .deeds-grid {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .deed-card {
        padding: 25px 20px;
    }
    
    .deed-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .deed-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .deed-card h3 {
        font-size: 1.2rem;
    }
    
    .good-deeds-x-link {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .social-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .social-link {
        padding: 15px 20px;
        font-size: 0.95rem;
        max-width: 280px;
    }
    
    .sources-section {
        padding: 70px 0;
        margin: 40px 0;
    }
    
    .sources-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .sources-grid {
        padding: 0 10px;
        gap: 20px;
    }
    
    .source-card {
        padding: 20px;
    }
    
    .source-info h4 {
        font-size: 1rem;
    }
    
    .source-text {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 25px 0;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .title-main {
        font-size: 2.2rem;
    }
    
    .title-sub {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .logo-container {
        width: 160px;
        height: 160px;
    }
    
    .hero-logo {
        width: 130px;
        height: 130px;
    }
    
    .logo-glow {
        width: 160px;
        height: 160px;
    }
    
    .social-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .sources-section h2,
    .social-section h2 {
        font-size: 1.6rem;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px 0;
        margin-bottom: 30px;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .logo-container {
        width: 150px;
        height: 150px;
    }
    
    .hero-logo {
        width: 120px;
        height: 120px;
    }
    
    .logo-glow {
        width: 150px;
        height: 150px;
    }
    
    .social-section {
        padding: 60px 0;
        margin-top: 10px;
    }
    
    .sources-section {
        padding: 60px 0;
        margin: 40px 0;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .social-link:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .source-card:hover {
        transform: none;
    }
    
    .copy-btn:hover {
        transform: none;
    }
    
    .hero-logo:hover {
        transform: none;
    }
}
