@font-face {
    font-family: 'SofiaProBold';
    src: url('font/sofiaProBold.1ff43b...9451.2.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'SofiaProMedium';
    src: url('font/SofiaProMedium.ea...5ccd3505e1194.2.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'SofiaProRegular';
    src: url('font/sofiaproregular.703c94fa...9d3b19469f.2.ttf') format('truetype');
    font-weight: normal;
}

body {
    font-family: 'SofiaProRegular', Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
    text-align: center;
    color: black;
}

.container {
    max-width: 900px;

    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    background: linear-gradient(90deg, #8e44ad, #3498db); /* Purple to blue gradient */
    padding: 20px;
    color: #ffffff;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-family: 'SofiaProBold', Arial, sans-serif;
    margin: 0;
    font-size: 2.5em;
}

header h2 {
    font-family: 'SofiaProMedium', Arial, sans-serif;
    margin: 0;
    font-size: 1.2em;
}

header .logo {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
}

.buy-ticket-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #e84393; /* Pink from logo */
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.buy-ticket-button:hover {
    background-color: #d6306d;
}

.logo {
    max-width: 150px;
    display: block;
    margin: 20px auto 10px;  /* Add top margin to separate it from the button */
}
.contract-address {
    align: center;
    cursor: pointer;
    color: #2980b9; /* Light blue from logo */
    font-weight: bold;
    margin: 20px 0;
    transition: color 0.3s;
}

.contract-address:hover {
    color: #1a5276;
}

.ticket-price {
    text-align: center;
    margin: 20px 0;
}

.ticket-price p {
    font-family: 'SofiaProBold', Arial, sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    color: #8e44ad; /* Purple from logo */
}

.how-it-works {
    background: linear-gradient(135deg, #2c3e50, #8e44ad); /* Gradient from dark blue to purple */
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.how-it-works:hover {
    transform: scale(1.05);
}

.stats-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
}

.stat {
    background-color: #2980b9; /* Light blue from logo */
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    align: center;
    text-align: center;
    flex: 1;
    margin: 10px;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.stat p {
    font-size: 1.5em; /* Increase font size */
    font-weight: bold; /* Make the text bold */
    color: white; /* White text color */
    text-shadow: 0 0 10px rgba(232, 67, 147, 0.7); /* Pink glow */
}

.stat h3 {
    font-size: 2em; /* Increase font size for titles */
    font-weight: bold; /* Make the titles bold */
    margin-bottom: 10px;
    text-shadow: none; /* Remove glow from titles */
}
.stat:hover {
    transform: scale(1.05);
}

.tokenomics-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
}

.tokenomics, .supply, .launch-info {
    background: linear-gradient(135deg, #8e44ad, #e84393); /* Gradient from purple to pink */
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    margin: 10px;
    min-width: 200px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.tokenomics:hover, .supply:hover, .launch-info:hover {
    transform: scale(1.05);
}

.tokenomics h3, .supply h3, .launch-info h3 {
    font-family: 'SofiaProBold', Arial, sans-serif;
    margin-top: 0;
}


.yield-farming {
    background-color: #3498db; /* Light blue */
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.yield-farming h3 {
    font-family: 'SofiaProBold', Arial, sans-serif;
    margin-top: 0;
}

.yield-farming-positions {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#yieldFarmingPositionsContainer {
    width: 100%;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
}
.yield-position {
    background-color: #2980b9; /* Light blue from logo */
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0;
    width: flex;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.yield-position:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}



.social-footer {
    background-color: #8e44ad; /* Purple from logo */
    color: white;
    padding: 20px;
    text-align: center;
}

.social-footer h3 {
    font-family: 'SofiaProBold', Arial, sans-serif;
    margin-bottom: 10px;
}

.social-footer a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s;
}

.social-footer a:hover {
    transform: scale(1.2); /* Enlarges the icon when hovered */
}

.social-footer img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin: 0 5px; /* Add some spacing between logos */
    display: inline-block;
    border-radius: 50%; /* Making all logos circular */
    background-color: white; /* Ensuring uniform background */
    padding: 5px; /* Adjusting padding for better visibility */
}


/* Responsive adjustments */
@media screen and (max-width: 1200px) {
    th, td {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    th, td {
        font-size: 12px;
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {
    th, td {
        font-size: 10px;
        padding: 8px;
    }
}


.burn-section {
    background: linear-gradient(135deg, #2c3e50, #8e44ad); /* Gradient from dark blue to purple */
    color: #ffffff; /* White text */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.burn-section h2 {
    font-family: 'SofiaProBold', Arial, sans-serif;
    margin-top: 0;
    text-align: center;
}

#burn-txns {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.burn-txn-header, .burn-txn {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; /* Ensure equal spacing */
    gap: 10px;
    width: 100%;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
    padding: 10px;
    margin: 5px 0;

    border-radius: 10px;
    color: #ffffff; /* White text */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center; /* Center text */
}

.burn-txn-header {
    font-weight: bold;
    background-color: #3d1e4a; /* Consistent light purple */
}

.burn-txn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.txn-link {
    color: #81d4fa; /* Light blue for readability */
    text-decoration: none;
}

.txn-link:hover {
    text-decoration: underline;
}
/* General Mobile Styles */
@media only screen and (max-width: 600px) {
    .burns-section {
      padding: 10px;
      font-size: 14px;
    }
  
    .burns-section table {
      width: 100%;
      display: block;
      overflow-x: auto;
    }
  
    .burns-section th, .burns-section td {
      padding: 8px;
      text-align: left;
      display: block;
      width: 100%;
    }
  
    .burns-section th {
      background-color: #4CAF50;
      color: white;
    }
  
    .burns-section td {
      background-color: #f2f2f2;
    }
  
    .burns-section tr {
      display: flex;
      flex-direction: column;
      border-bottom: 1px solid #ddd;
    }
  
    .burns-section tr:last-child {
      border-bottom: none;
    }
  }
/* General Mobile Styles */
@media only screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }
    
    header h1 {
        font-size: 2em;
    }

    header h2 {
        font-size: 1em;
    }

    .buy-ticket-button {
        top: 10px;
        right: 10px;
        padding: 8px 16px;
        font-size: 0.9em;
    }

    .logo {
        max-width: 100px;
    }

    .contract-address {
        font-size: 0.9em;
    }

    .burn-section h2 {
        font-size: 1.5em;
    }

    .burn-txn-header, .burn-txn {
        grid-template-columns: 1fr;
        font-size: 0.9em;
    }
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #000000;
        color: #ffffff;
    }
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #000000;
        color: #ffffff;
    }
    
    /* Add dark mode link colors if needed */
    .burn-section a {
        color: #81d4fa; /* Adjust color for dark mode */
    }

    .burn-section a:hover {
        color: #43c0fb; /* Adjust hover color for dark mode */
    }
}

/* Add these lines near the bottom of your CSS file for specificity */
.burn-section a {
    color: #81d4fa; /* Replace with your desired color code */
    text-decoration: underline;
}

.burn-section a:hover {
    color: #43c0fb; /* Optional: Changes color on hover */
}