/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    min-height: 100vh;
    color: #000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #000;
    margin-bottom: 40px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    background: #000;
    color: #FFA500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #FFA500;
    clip-path: polygon(50% 0%, 0% 50%, 50% 100%, 100% 50%);
}

.coin-name {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    background: #000;
    padding: 5px;
    border-radius: 8px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #FFA500;
    padding: 8px 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0%, 90% 0%, 100% 20%, 100% 80%, 90% 100%, 10% 100%, 0% 80%, 0% 20%);
}

.lang-btn.active {
    background: #FFA500;
    color: #000;
}

.lang-btn:hover {
    background: #FF8C00;
    color: #000;
}

/* Main Content */
.main-content {
    margin-bottom: 60px;
}

/* Hero Section */
.hero {
    margin-bottom: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 0px #000;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
    max-width: 400px;
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cz-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cz-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
    transition: transform 0.3s ease;
}

.cz-image:hover {
    transform: scale(1.05);
}

/* Removed image overlay with geometric shapes */

.geometric-shape {
    position: absolute;
    background: #000;
    opacity: 0.8;
}

.shape-1 {
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    top: 20%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    top: 60%;
    right: 20%;
    background: #FFA500;
    animation: float 3s ease-in-out infinite 1s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    top: 30%;
    right: 10%;
    background: #000;
    animation: float 3s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #000;
    clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
}

/* Contract Section */
.contract-section {
    margin-bottom: 80px;
    text-align: center;
}

.contract-box {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #000;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 0px #000;
    border: 3px solid #000;
}

.contract-address {
    color: #FFA500;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.copy-btn {
    background: #FFA500;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0%, 90% 0%, 100% 20%, 100% 80%, 90% 100%, 10% 100%, 0% 80%, 0% 20%);
}

.copy-btn:hover {
    background: #FF8C00;
    transform: translateY(-2px);
}

/* Buy Section */
.buy-section {
    margin-top: 30px;
    text-align: center;
}

.buy-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    color: #000;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    clip-path: polygon(5% 0%, 95% 0%, 100% 15%, 100% 85%, 95% 100%, 5% 100%, 0% 85%, 0% 15%);
    border: 3px solid #000;
    box-shadow: 0 8px 0px #000;
    position: relative;
    overflow: hidden;
}

.buy-button:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FF7F00 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 0px #000;
}

.buy-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 0px #000;
}

.buy-text {
    font-weight: 800;
    letter-spacing: 1px;
}

.buy-icon {
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Community Section */
.community-section {
    margin-bottom: 80px;
    text-align: center;
}

.community-link {
    text-decoration: none;
    display: inline-block;
}

.community-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #000;
    color: #FFA500;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    clip-path: polygon(5% 0%, 95% 0%, 100% 15%, 100% 85%, 95% 100%, 5% 100%, 0% 85%, 0% 15%);
    border: 3px solid #000;
}

.community-button:hover {
    background: #FFA500;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 0px #000;
}

.arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.community-button:hover .arrow {
    transform: translateX(5px);
}

/* Video Section */
.video-section {
    margin-bottom: 60px;
    text-align: center;
}

.video-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    background: #000;
    padding: 15px;
    border-radius: 20px;
    clip-path: polygon(3% 0%, 97% 0%, 100% 8%, 100% 92%, 97% 100%, 3% 100%, 0% 92%, 0% 8%);
    border: 3px solid #000;
    box-shadow: 0 10px 0px #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.video-container:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 15px 0px #000;
}

.main-video {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 400px;
    border-radius: 15px;
    background: #000;
    border: none;
    display: block;
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: pointer;
}

.main-video:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.main-video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 0 0 15px 15px;
}

.main-video::-webkit-media-controls-play-button,
.main-video::-webkit-media-controls-pause-button {
    background-color: #FFA500;
    border-radius: 50%;
    color: #000;
}

.main-video::-webkit-media-controls-timeline {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.main-video::-webkit-media-controls-current-time-display,
.main-video::-webkit-media-controls-time-remaining-display {
    color: #FFA500;
    font-weight: bold;
}

.main-video::-webkit-media-controls-volume-slider {
    background-color: #FFA500;
}

.main-video::-webkit-media-controls-mute-button {
    background-color: #FFA500;
    border-radius: 50%;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 2px solid #000;
    margin-top: 60px;
}

.footer-text {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .contract-box {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        max-width: 100%;
    }
    
    .contract-address {
        font-size: 0.9rem;
        word-break: break-all;
        text-align: center;
    }
    
    .buy-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .video-container {
        padding: 10px;
        max-width: 95%;
    }
    
    .main-video {
        min-height: 200px;
        max-height: 250px;
    }
    
    .cz-image {
        max-height: 300px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .community-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .contract-box {
        padding: 15px;
    }
    
    .community-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* Additional Geometric Elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Low-poly decorative elements */
.decorative-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid #000;
    opacity: 0.1;
}

.decorative-triangle:nth-child(1) {
    top: 10%;
    left: 5%;
    animation: rotate 10s linear infinite;
}

.decorative-triangle:nth-child(2) {
    top: 70%;
    right: 5%;
    animation: rotate 10s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
